2022-09-21 14:06:27 +00:00
|
|
|
[package]
|
2022-11-29 09:28:32 +00:00
|
|
|
name = "waku-bindings"
|
2022-11-28 16:57:20 +00:00
|
|
|
version = "0.1.0-beta1"
|
2022-09-21 14:06:27 +00:00
|
|
|
edition = "2021"
|
2022-10-19 13:58:09 +00:00
|
|
|
authors = [
|
|
|
|
"Daniel Sanchez Quiros <danielsq@status.im>"
|
|
|
|
]
|
2022-11-28 16:57:20 +00:00
|
|
|
description = "Waku networking library"
|
|
|
|
license = "MIT OR Apache-2.0"
|
2022-11-28 09:18:42 +00:00
|
|
|
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]
|
2022-10-06 13:51:00 +00:00
|
|
|
aes-gcm = { version = "0.10", features = ["aes"] }
|
2022-10-09 14:50:40 +00:00
|
|
|
base64 = "0.13"
|
2022-10-03 13:21:19 +00:00
|
|
|
hex = "0.4"
|
2022-11-28 16:57:20 +00:00
|
|
|
multiaddr = "0.16"
|
2022-10-03 13:39:50 +00:00
|
|
|
once_cell = "1.15"
|
2022-10-17 17:30:07 +00:00
|
|
|
rand = "0.8"
|
2022-10-26 12:56:03 +00:00
|
|
|
secp256k1 = { version = "0.24", features = ["rand", "recovery", "serde"] }
|
2022-09-28 14:03:47 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-10-03 13:21:19 +00:00
|
|
|
serde_json = "1.0"
|
2022-10-06 13:51:00 +00:00
|
|
|
sscanf = "0.3"
|
2022-12-20 11:33:08 +00:00
|
|
|
smart-default = "0.6"
|
2022-10-25 09:25:23 +00:00
|
|
|
url = "2.3"
|
2022-11-28 16:57:20 +00:00
|
|
|
waku-sys = { version = "0.1.0-beta1", path = "../waku-sys" }
|