-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
50 lines (41 loc) · 1.23 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
[package]
name = "aranya-client"
description = "Client library for using Aranya"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
[lints]
workspace = true
[features]
default = []
# Enable debugging.
debug = []
[dependencies]
aranya-daemon-api = { workspace = true }
aranya-base58 = { workspace = true, features = ["std"] }
aranya-buggy = { workspace = true, features = ["std"] }
aranya-crypto = { workspace = true }
aranya-fast-channels = { workspace = true, features = ["std", "posix"] }
aranya-util = { workspace = true }
anyhow = { workspace = true }
indexmap = { version = "2.7" }
# TODO: gate behind `target_family = unix`
libc = { workspace = true }
postcard = { workspace = true }
serde = { workspace = true, features = ["derive"] }
tarpc = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["io-util", "macros", "net", "sync"] }
tracing = { workspace = true }
[dev-dependencies]
aranya-daemon = { workspace = true }
backon = { workspace = true }
serial_test = { workspace = true }
tempfile = { workspace = true }
test-log = { workspace = true }
[[test]]
name = "tests"
path = "tests/tests.rs"