-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (46 loc) · 1.03 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
[package]
name = "rphoton"
version = "0.1.0"
edition = "2021"
[profile.dev]
opt-level = 0
debug = true
[lib]
name = "boson"
path = "src/lib.rs"
[[test]]
name = "apitests"
path = "tests/apitests/mod.rs"
[[bin]]
name = "shell"
path = "apps/shell/main.rs"
[[bin]]
name = "launcher"
path = "apps/launcher/main.rs"
[features]
devp = []
inspect = ["devp"]
default = ["devp"]
[dependencies]
log = "0.4.22"
bs58 = "0.5.0"
hex = "0.4"
libc = "0.2.151"
sha2 = "0.10.8"
rbtree = "0.2.0"
diesel = { version = "2.2.3", features = ["sqlite"] }
tokio = { version = "1.35.1", features = ["full"] }
clap = { version = "4.0", features = ["derive"] }
ciborium = "0.2.1"
ciborium-io = "0.2.1"
serde = "1.0"
serde_json = "1.0"
libsodium-sys-stable = "1.20.4"
static_assertions = "1.1.0"
unicode-normalization = "0.1.22"
get_if_addrs = "0.5.3"
once_cell = "1.17"
[dev-dependencies]
serial_test = "2.0"
#[package.metadata.test]
#threads = 1