-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdaft.opam
41 lines (34 loc) · 1.12 KB
/
daft.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
opam-version: "2.0"
name: "daft"
authors: "Francois Berenger"
maintainer: "[email protected]"
homepage: "https://github.com/UnixJunkie/daft"
bug-reports: "https://github.com/UnixJunkie/daft/issues"
dev-repo: "git+https://github.com/UnixJunkie/daft.git"
license: "CeCILL-C"
build: ["dune" "build" "-p" name "-j" jobs]
depends: [
"ocaml" {>= "5.0.0"}
"dolog" {>= "4.0.0"}
"batteries"
"fileutils"
"zmq" {>= "5.0.0" & < "5.1.4"}
"cryptokit"
"base-unix"
]
synopsis: "DAFT Allows File Transfers"
description: """
Summary:
--------
Distributed file transfer application in user space.
Securely move data files during distributed computational experiments and
provide a global view of all files, even when there is no distributed
filesystem and probably faster than NFS for large files.
Available commands:
-------------------
put filename: add/publish a given file into the system.
bcast filename: equivalent to put then send the file to all nodes.
get filename: retrieve a file previously published into the system.
ls [-l]: list all files known to the system and optionally where
their chunks are.
"""