-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
92 lines (83 loc) · 2.86 KB
/
Copy pathCargo.toml
File metadata and controls
92 lines (83 loc) · 2.86 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[workspace]
members = ["gui"]
exclude = [
"vendor/iroh",
"vendor/suppaftp",
"vendor/libunftp",
"vendor/unftp-core",
"vendor/unftp-sbe-fs",
]
resolver = "3"
[workspace.package]
version = "0.3.1"
edition = "2024"
rust-version = "1.91"
license = "MIT"
[workspace.lints.rust]
missing_debug_implementations = "warn"
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(iroh_docsrs)", "cfg(iroh_loom)", "cfg(skip_patchbay)"] }
[workspace.lints.clippy]
unused-async = "warn"
[package]
name = "ii"
version = "0.3.12"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
[dependencies]
async-trait = "0.1"
anyhow = "1"
attohttpc = { version = "0.31", default-features = false, features = ["tls-rustls-webpki-roots-ring"] }
base64 = "0.22"
bytes = "1"
futures-util = "0.3"
glob = "0.3.3"
hmac = "0.12"
libunftp = { path = "vendor/libunftp", default-features = false, features = ["ring"] }
iroh = { path = "vendor/iroh/iroh", default-features = false, features = ["tls-ring", "unstable-net-report"] }
iroh-relay = { path = "vendor/iroh/iroh-relay", default-features = false, features = ["server-minimal"] }
md5 = { package = "md-5", version = "0.10" }
percent-encoding = "2"
postcard = { version = "1", features = ["use-std"] }
quick-xml = "0.41"
qrcodegen = "1.8.0"
rand = "0.10"
rustls = { version = "0.23.33", default-features = false, features = ["ring"] }
reqwest = { version = "0.13", default-features = false, features = ["rustls-no-provider", "stream"] }
webpki-roots = "1"
digest_auth = "0.3"
russh = { version = "0.61.0", default-features = false, features = ["ring", "rsa"] }
russh-sftp = "2.3.0"
rcgen = { version = "0.14", default-features = false, features = ["crypto", "pem", "ring"] }
serde = { version = "1", features = ["derive"] }
socket2 = "0.6"
sha2 = "0.10"
suppaftp = { path = "vendor/suppaftp", default-features = false, features = ["tokio"] }
tar = { version = "0.4", default-features = false }
tempfile = "3"
time = { version = "0.3", default-features = false, features = ["formatting", "macros", "std"] }
tokio = { version = "1", features = ["fs", "io-std", "io-util", "macros", "net", "rt", "signal", "time"] }
tokio-rustls = { version = "0.26", default-features = false }
tokio-util = { version = "0.7", features = ["io"] }
toml = "1.0"
tracing = "0.1"
url = { version = "2.5", features = ["serde"] }
unftp-core = { path = "vendor/unftp-core" }
unftp-sbe-fs = { path = "vendor/unftp-sbe-fs" }
[dev-dependencies]
serde_json = "1"
[build-dependencies]
winresource = "0.1"
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = "z"
panic = "abort"
strip = true
[patch.crates-io]
unftp-core = { path = "vendor/unftp-core" }
unftp-sbe-fs = { path = "vendor/unftp-sbe-fs" }
iroh-base = { path = "vendor/iroh/iroh-base" }
iroh-dns = { path = "vendor/iroh/iroh-dns" }
iroh-relay = { path = "vendor/iroh/iroh-relay" }
attohttpc = { path = "vendor/attohttpc" }