This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
59 lines (54 loc) · 1.79 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
[package]
name = "sendme"
version = "0.1.0"
edition = "2021"
readme = "README.md"
license = "MIT/Apache-2.0"
authors = ["dignifiedquire <[email protected]>"]
repository = "https://github.com/n0-computer/sendme"
# Sadly this also needs to be updated in .github/workflows/ci.yml
rust-version = "1.63"
[dependencies]
abao = { version = "0.1.2" }
anyhow = { version = "1", features = ["backtrace"] }
base64 = "0.21.0"
blake3 = "1.3.3"
bytes = "1"
clap = { version = "4", features = ["derive"], optional = true }
console = { version = "0.15.5", optional = true }
data-encoding = { version = "2.3.3", optional = true }
der = { version = "0.6", features = ["alloc", "derive"] }
ed25519-dalek = { version = "1.0.1", features = ["serde"] }
futures = "0.3.25"
indicatif = { version = "0.17", features = ["tokio"], optional = true }
multibase = { version = "0.9.1", optional = true }
portable-atomic = "1"
postcard = { version = "1", default-features = false, features = ["alloc", "use-std", "experimental-derive"] }
quinn = "0.9.3"
rand = "0.7"
rcgen = "0.10"
ring = "0.16.20"
rustls = { version = "0.20.8", default-features = false, features = ["dangerous_configuration"] }
serde = { version = "1", features = ["derive"] }
ssh-key = { version = "0.5.1", features = ["ed25519", "std", "rand_core"] }
tempfile = "3"
thiserror = "1"
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["io-util", "io"] }
tracing = "0.1"
tracing-futures = "0.2.5"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
webpki = "0.22"
x509-parser = "0.14"
zeroize = "1.5"
[dev-dependencies]
hex = "0.4.3"
proptest = "1.0.0"
rand = "0.7"
testdir = "0.7.1"
[features]
default = ["cli"]
cli = ["clap", "console", "indicatif", "data-encoding", "multibase"]
[[bin]]
name = "sendme"
required-features = ["cli"]