16 lines
539 B
TOML
16 lines
539 B
TOML
|
[package]
|
||
|
name = "relay"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
publish = false
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
anyhow = "1.0.72"
|
||
|
env_logger = "0.10.0"
|
||
|
libp2p = { version = "0.52.1", features = ["tokio", "relay", "ed25519", "quic", "tcp", "yamux", "noise", "macros", "identify", "ping"] }
|
||
|
log = "0.4.19"
|
||
|
redis = { version = "0.23.0", default-features = false, features = ["tokio-comp"] }
|
||
|
tokio = { version = "1.29.1", features = ["rt-multi-thread", "macros"] }
|