2022-09-21 16:06:27 +02:00
|
|
|
[package]
|
|
|
|
|
name = "waku-sys"
|
2025-01-13 09:50:05 +01:00
|
|
|
version = "1.0.0"
|
2022-09-21 16:06:27 +02:00
|
|
|
edition = "2021"
|
2022-10-19 15:58:09 +02:00
|
|
|
authors = [
|
2024-02-19 17:04:41 -04:00
|
|
|
"Daniel Sanchez Quiros <danielsq@status.im>",
|
2025-01-13 09:50:05 +01:00
|
|
|
"Richard Ramos <richard@waku.org>",
|
|
|
|
|
"Ivan Folgueira Bande <ivansete@status.im>"
|
2022-10-19 15:58:09 +02:00
|
|
|
]
|
2022-11-28 17:57:20 +01:00
|
|
|
description = "Waku networking library generated bindings"
|
|
|
|
|
license = "MIT OR Apache-2.0"
|
2022-11-28 10:18:42 +01:00
|
|
|
repository = "https://github.com/waku-org/waku-rust-bindings"
|
|
|
|
|
keywords = ["waku", "peer-to-peer", "libp2p", "networking"]
|
|
|
|
|
categories = ["network-programming"]
|
|
|
|
|
|
2025-01-14 21:46:58 +01:00
|
|
|
include = [
|
|
|
|
|
"build.rs",
|
|
|
|
|
"src/cmd.c",
|
|
|
|
|
"src/lib.rs",
|
|
|
|
|
"libwaku/libwaku.a",
|
|
|
|
|
"libwaku/libwaku.h",
|
|
|
|
|
"libwaku/libbacktrace_wrapper.o",
|
|
|
|
|
"libwaku/libbacktrace.a",
|
|
|
|
|
"libwaku/libminiupnpc.a",
|
|
|
|
|
"libwaku/libnatpmp.a",
|
2023-05-11 14:01:34 -04:00
|
|
|
]
|
2022-09-21 16:06:27 +02:00
|
|
|
|
2022-09-28 16:03:47 +02:00
|
|
|
[lib]
|
|
|
|
|
crate-type = ["rlib"]
|
|
|
|
|
|
2022-09-21 16:06:27 +02:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
2022-09-22 15:13:16 +02:00
|
|
|
[dependencies]
|
|
|
|
|
|
|
|
|
|
[build-dependencies]
|
2023-02-27 13:15:59 +02:00
|
|
|
bindgen = "0.64"
|
2024-11-28 10:35:41 +01:00
|
|
|
cc = "1.0.73"
|