mirror of
https://github.com/EasyTier/EasyTier.git
synced 2026-09-03 09:35:41 +00:00
25 lines
585 B
TOML
25 lines
585 B
TOML
[package]
|
|
name = "easytier-ios"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["staticlib", "rlib"]
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
easytier-ffi = { path = "../easytier-ffi", default-features = false, features = [
|
|
"c-abi",
|
|
] }
|
|
|
|
[dev-dependencies]
|
|
uuid = "1"
|
|
tokio = { version = "1", features = ["io-util"] }
|
|
easytier-core = { path = "../../easytier-core" }
|
|
easytier-ffi = { path = "../easytier-ffi", default-features = false, features = [
|
|
"c-abi",
|
|
"ffi-dataplane",
|
|
] }
|