blob: 178679def5afd364a315b23bb5e713525049a8ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[package]
name = "stellar-rs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"bindings/rs-timeout",
"bindings/rs-dablooms",
]
[dependencies]
rs-dablooms = {path="bindings/rs-dablooms"}
rs-timeout = {path="bindings/rs-timeout"}
nom = "7"
chrono = "0.4"
pcap = "0.11"
|