-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
63 lines (60 loc) · 1.66 KB
/
Cargo.toml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "ftp2mfs"
version = "0.3.1"
authors = ["Julius Michaelis <[email protected]>"]
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/jcaesar/ftp2mfs"
categories = ["command-line-utilities"]
keywords = ["ftp", "http", "rsync", "ipfs", "mfs"]
description = "Utility for syncing FTP folders into IPFS"
resolver = "2"
[dependencies]
clap = { version = "3.0.0", features = ["derive", "env"] }
serde_json = "1.0.64"
serde = { version = "1.0.126", features = ["derive"] }
chrono = { version = "0.4.19", features = ["serde"] }
tokio = { version = "1.7.1", features = ["macros", "fs"] }
crossbeam-channel = "0.5.1"
humantime = "2.1.0"
anyhow = "1.0.41"
hostname = "0.3.1"
nanoid = "0.4.0"
ignore = "0.4.18"
serde_yaml = "0.8.17"
url = { version = "2.2.2", features = ["serde"] }
serde-humantime = "0.1.1"
blake3 = "0.3.8"
ipfs-mfs = { path = "crates/mfs", version = "0.3" }
async_ftp = "5.0.0"
async-trait = "0.1.50"
bytes = "1.0.1"
futures-channel = "0.3.15"
futures = "0.3.15"
futures-util = "0.3.15"
log = "0.4.14"
env_logger = "0.8.4"
bytesize = "1.0.1"
futures-core = "0.3.15"
walkdir = "2.3.2"
pathdiff = "0.2.0"
reqwest = { version = "0.11.3", features = ["gzip", "brotli", "stream"] }
select = "0.5.0"
arrsync = { path = "crates/arrsync", version = "0.2" }
tokio-util = { version = "0.6.7", features = ["compat"] }
async-recursion = "0.3.2"
systemd-journal-logger = "0.3.1"
custom_debug = "0.5.0"
[dev-dependencies]
libunftp = "0.17.4"
tokio = { version = "1.7.1", features = ["full", "macros"] }
unmemftp = { path = "crates/unmemftp" }
ctor = "0.1.20"
[workspace]
members = [
"crates/unmemftp",
"crates/mfs",
"crates/arrsync",
"hyperprov",
]