2022-09-21 14:06:27 +00:00
|
|
|
[package]
|
2022-11-29 09:28:32 +00:00
|
|
|
name = "waku-bindings"
|
2023-11-07 19:50:35 +00:00
|
|
|
version = "0.5.0"
|
2022-09-21 14:06:27 +00:00
|
|
|
edition = "2021"
|
2022-10-19 13:58:09 +00:00
|
|
|
authors = [
|
2024-02-21 15:59:40 +00:00
|
|
|
"Daniel Sanchez Quiros <danielsq@status.im>",
|
|
|
|
"Richard Ramos <richard@waku.org>"
|
2022-10-19 13:58:09 +00:00
|
|
|
]
|
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"] }
|
2023-02-20 11:44:55 +00:00
|
|
|
base64 = "0.21"
|
|
|
|
enr = { version = "0.7", features = ["serde", "rust-secp256k1"] }
|
2022-10-03 13:21:19 +00:00
|
|
|
hex = "0.4"
|
2023-02-20 11:44:55 +00:00
|
|
|
multiaddr = "0.17"
|
2022-10-03 13:39:50 +00:00
|
|
|
once_cell = "1.15"
|
2022-10-17 17:30:07 +00:00
|
|
|
rand = "0.8"
|
2023-02-20 11:44:55 +00:00
|
|
|
secp256k1 = { version = "0.26", 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"
|
2023-02-20 11:44:55 +00:00
|
|
|
sscanf = "0.4"
|
2022-12-20 11:33:08 +00:00
|
|
|
smart-default = "0.6"
|
2022-10-25 09:25:23 +00:00
|
|
|
url = "2.3"
|
2023-11-07 19:50:35 +00:00
|
|
|
waku-sys = { version = "0.5.0", path = "../waku-sys" }
|
2023-11-02 17:59:41 +00:00
|
|
|
libc = "0.2"
|
2023-12-08 21:30:30 +00:00
|
|
|
serde-aux = "4.3.1"
|
2024-02-13 18:50:00 +00:00
|
|
|
rln = "0.3.4"
|
2024-11-02 22:29:41 +00:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2023-01-05 15:53:49 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-01-27 09:35:07 +00:00
|
|
|
futures = "0.3.25"
|
2023-02-20 11:44:55 +00:00
|
|
|
serial_test = "1.0.0"
|
2023-01-27 09:35:07 +00:00
|
|
|
tokio = { version = "1.24.2", features = ["macros", "rt", "sync", "time"] }
|