diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..8a163fc --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,27 @@ +[package] +name = "tesseras-paste" +version = "0.1.0" +edition = "2024" +license = "ISC" +readme = "README.md" +description = "Decentralized pastebin built on tesseras-dht" +categories = ["network-programming"] +homepage = "https://tesseras.net" +keywords = ["dht", "kademlia", "p2p", "nat", "distributed"] +repository = "https://got.tesseras.net/?action=summary&path=tesseras-dht.git" + +[[bin]] +name = "tpd" +path = "src/bin/tpd.rs" + +[[bin]] +name = "tp" +path = "src/bin/tp.rs" + +[dependencies] +chacha20poly1305 = "=0.10.1" +env_logger = "=0.11.10" +log = "=0.4.29" + +# tesseras +tesseras-dht = "=0.1.0" |