-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
48 lines (44 loc) · 985 Bytes
/
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
[package]
name = "carbonado-node"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "carbonadod"
[features]
default = []
neon = ["blake3/neon"]
rayon = ["blake3/rayon"]
[dependencies]
anyhow = "1.0.69"
axum = "0.6.9"
axum-macros = "0.3.4"
bao = "0.12.1"
blake3 = "1.3.3"
carbonado = "0.3.0-rc.4"
# carbonado = { path = "../carbonado" }
chrono = "0.4.23"
clap = { version = "4.1.8", features = ["derive"] }
directories = "4.0.1"
flexi_logger = { version = "0.25.2", features = ["colors"] }
flexi_syslog = "0.5.2"
hex = "0.4.3"
human_bytes = "0.4.1"
infer = "0.13.0"
log = "0.4.17"
once_cell = "1.17.1"
par-stream = "0.10.2"
rand = "0.8.5"
rayon = "1.6.1"
serde = "1.0.159"
secp256k1 = { version = "0.27.0", features = [
"global-context",
"rand-std",
"bitcoin-hashes-std",
"serde",
] }
syslog = "6.0.1"
tokio = { version = "1.26.0", features = ["full"] }
toml = "0.7.2"
tower-http = { version = "0.4.0", features = ["cors"] }
[dev-dependencies]
serial_test = "1.0.0"