-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml.bak
More file actions
35 lines (31 loc) · 1.1 KB
/
Copy pathCargo.toml.bak
File metadata and controls
35 lines (31 loc) · 1.1 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
[package]
name = "walkie-talkie-core"
version = "0.2.0"
edition = "2021"
[features]
default = []
napi-binding = ["dep:napi", "dep:napi-derive", "dep:napi-build"]
[dependencies]
libp2p = { version = "0.54", features = ["tcp", "tokio", "noise", "yamux", "macros", "identify", "ping", "gossipsub", "mdns"] }
tokio = { version = "1", features = ["full"] }
x25519-dalek = { version = "2.1", features = ["rand_core"] }
chacha20poly1305 = "0.10"
rand = "0.8"
futures = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
thiserror = "1.0"
anyhow = "1.0"
napi = { version = "2", features = ["async"], optional = true }
napi-derive = { version = "2", optional = true }
ed25519-dalek = { version = "2.1", features = ["static_secrets"] }
base64 = "0.22"
tower = { version = "0.4", features = ["util"] }
tower-http = { version = "0.5", features = ["cors"] }
axum = { version = "0.7", features = ["percent-encoding"] }
[build-dependencies]
napi-build = { version = "2", optional = true }
[dev-dependencies]
tokio-test = "0.4"