mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-07-25 03:32:51 +02:00
I was hoping to try this out a bit; hope the patch is welcome. I made the necessary additions to move it, but tried to not jostle around too much otherwise. Signed-off-by: Erik Hollensbe <git@hollensbe.org>
37 lines
849 B
TOML
37 lines
849 B
TOML
[package]
|
|
name = "syncwhole"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
authors = ["Adam Ierymenko <adam.ierymenko@zerotier.com>"]
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = 'abort'
|
|
|
|
[lib]
|
|
name = "syncwhole"
|
|
path = "src/lib.rs"
|
|
doc = true
|
|
|
|
[[bin]]
|
|
name = "syncwhole_local_testnet"
|
|
path = "src/main.rs"
|
|
doc = false
|
|
required-features = ["include_sha2_lib"]
|
|
|
|
[dependencies]
|
|
tokio = { version = "^1", features = ["net", "rt", "parking_lot", "time", "io-std", "io-util", "sync", "rt-multi-thread"], default-features = false }
|
|
serde = { version = "^1", features = ["derive"], default-features = false }
|
|
serde_bytes = "^0"
|
|
rmp = "^0"
|
|
rmp-serde = "^1"
|
|
sha2 = { version = "^0", optional = true }
|
|
async-trait = "^0"
|
|
futures-core = "^0"
|
|
iblt = { version = "^0", path = "../iblt" }
|
|
|
|
[features]
|
|
include_sha2_lib = ["sha2"]
|