-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
32 lines (29 loc) · 824 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
32
[package]
name = "kademlia-dht"
version = "1.2.0"
authors = ["Jeffrey Xiao <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://gitlab.com/jeffrey-xiao/kademlia-dht-rs"
documentation = "https://docs.rs/kademlia-dht"
description = """
A simple implementation of the Kademlia DHT.
"""
categories = ["algorithms", "concurrency", "data-structures"]
keywords = ["kademlia", "dht"]
include = ["src/**/*", "Cargo.toml"]
edition = "2018"
[badges]
travis-ci = { repository = "jeffrey-xiao/kademlia-dht-rs", branch = "master" }
codecov = { repository = "jeffrey-xiao/kademlia-dht-rs", service = "gitlab" }
[dependencies]
bincode = "0.9"
log = "0.4"
rand = "0.4"
serde = "1.0"
serde_derive = "1.0"
sha3 = "0.7"
simplelog = "0.5"
time = "0.1"
[dev-dependencies]
num-bigint = "0.1"