aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: ffbcb164ee3282f792b515cae9bff37d1919fa49 (plain)
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
[package]
name = "tesseras-dht"
version = "0.1.0"
edition = "2024"
authors = [ "murilo ijanc' <murilo@ijanc.org>" ]
categories = ["network-programming"]
description = "NAT-aware Kademlia DHT library"
homepage = "https://tesseras.net"
keywords = ["dht", "kademlia", "p2p", "nat", "distributed"]
license = "ISC"
readme = "README.md"
repository = "https://git.sr.ht/~ijanc/tesseras-dht"
rust-version = "1.93.0"

[dependencies]
ed25519-dalek = "=2.2.0"
log = "=0.4.29"
mio = { version = "=1.1.1", features = ["net", "os-poll"] }
sha2 = "=0.10.9"

[dev-dependencies]
env_logger = "0.11"

[[bench]]
name = "bench"
harness = false