-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 825 Bytes
/
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
[package]
name = "libp2p-rpc"
version = "0.1.0"
authors = ["lerencao <funfriendcjf@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[dependencies.libp2p]
git = "https://github.com/libp2p/rust-libp2p.git"
default-features = false
[dependencies.futures]
version="0.3"
[dependencies.futures-timer]
version = "3.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.anyhow]
version = "1.0"
[dependencies.log]
version = "0.4"
[dependencies.atomic_refcell]
version="0.1"
[dev-dependencies]
async-std = "1.0"
libp2p-mplex = { git = "https://github.com/libp2p/rust-libp2p.git" }
libp2p-secio = { git = "https://github.com/libp2p/rust-libp2p.git" }
libp2p-tcp = { git = "https://github.com/libp2p/rust-libp2p.git" }
env_logger = "0.7"