mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-05-28 10:11:19 +00:00
18 lines
494 B
TOML
18 lines
494 B
TOML
[package]
|
|
name = "file-sharing"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
async-std = { version = "1.12", features = ["attributes"] }
|
|
async-trait = "0.1"
|
|
clap = { version = "4.3.0", features = ["derive"] }
|
|
either = "1.8"
|
|
env_logger = "0.10"
|
|
futures = "0.3.28"
|
|
libp2p = { path = "../../libp2p", features = ["async-std", "dns", "kad", "noise", "macros", "request-response", "tcp", "websocket", "yamux"] }
|
|
multiaddr = { version = "0.17.1" }
|
|
void = "1.0.2"
|