waku-rust-bindings/waku-bindings/Cargo.toml

28 lines
777 B
TOML
Raw Normal View History

2022-09-21 14:06:27 +00:00
[package]
name = "waku"
version = "0.1.0"
edition = "2021"
authors = [
"Daniel Sanchez Quiros <danielsq@status.im>"
]
2022-11-28 09:18:42 +00:00
description = "Peer-to-peer networking library"
license = "MIT"
repository = "https://github.com/waku-org/waku-rust-bindings"
keywords = ["waku", "peer-to-peer", "libp2p", "networking"]
categories = ["network-programming"]
2022-09-21 14:06:27 +00:00
2022-11-28 09:18:42 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2022-09-21 14:06:27 +00:00
[dependencies]
aes-gcm = { version = "0.10", features = ["aes"] }
base64 = "0.13"
hex = "0.4"
2022-10-26 12:56:03 +00:00
multiaddr = "0.15"
once_cell = "1.15"
rand = "0.8"
2022-10-26 12:56:03 +00:00
secp256k1 = { version = "0.24", features = ["rand", "recovery", "serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sscanf = "0.3"
url = "2.3"
2022-11-28 09:18:42 +00:00
waku-sys = "0.1"