-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (52 loc) · 1.88 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (52 loc) · 1.88 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
[package]
name = "conet-l0d"
version = "0.1.0"
edition = "2021"
description = "Linux runtime for wallet-addressed web3:// services over CoNET Layer Minus"
license = "MIT"
publish = false
repository = "https://github.com/CoNET-project/CoNET-L0D"
homepage = "https://github.com/CoNET-project/CoNET-L0D"
readme = "README.md"
[[bin]]
name = "conet-l0d"
path = "src/main.rs"
[dependencies]
anyhow = "1"
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
clap = { version = "4", features = ["derive"] }
base64 = "0.22"
hex = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tiny-keccak = { version = "2", features = ["keccak"] }
aes-gcm = "0.10"
sha2 = "0.10"
rand = { version = "0.8", features = ["std"] }
k256 = { version = "0.13", default-features = false, features = ["arithmetic", "ecdsa", "sha256", "std"] }
thiserror = "2"
toml = "0.8"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal", "sync", "time", "io-util", "fs", "process", "net"] }
tokio-rustls = { version = "0.26", default-features = false, features = ["ring", "tls12", "logging"] }
rustls = { version = "0.23", default-features = false, features = ["ring", "std", "tls12", "logging"] }
webpki-roots = "0.26"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
sequoia-openpgp = { version = "1.22", default-features = false, features = ["crypto-rust", "allow-experimental-crypto", "allow-variable-time-crypto"] }
# rustc 1.87: newer url/idna pull icu 2.3 (needs 1.88).
url = "=2.5.4"
idna = "=1.0.3"
idna_adapter = "=1.2.1"
icu_normalizer = "=2.1.1"
icu_properties = "=2.1.2"
icu_provider = "=2.1.1"
icu_locale_core = "=2.1.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
libc = "0.2"
[dev-dependencies]
tempfile = "3"
wiremock = "=0.6.2"
[profile.release]
lto = true
codegen-units = 1
strip = "symbols"