mirror of
https://github.com/sudosylabs/vnidrop.git
synced 2026-08-14 14:19:57 +02:00
59 lines
1.7 KiB
TOML
59 lines
1.7 KiB
TOML
[package]
|
|
name = "vnidrop"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
|
|
[lib]
|
|
name = "vnidrop"
|
|
crate-type = ["cdylib", "staticlib", "rlib"]
|
|
|
|
[features]
|
|
integration-test-store = []
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.102"
|
|
async-channel = "2.5.0"
|
|
bytes = "1.11.1"
|
|
blake3 = "1.8.3"
|
|
data-encoding = "2.11.0"
|
|
futures = "0.3"
|
|
futures-lite = "2.6.1"
|
|
getrandom = "0.3.4"
|
|
iroh = "1.0.3"
|
|
iroh-blobs = "0.103.0"
|
|
irpc = "0.17.0"
|
|
irpc-iroh = "0.17.0"
|
|
libc = "0.2.186"
|
|
n0-future = "0.3.1"
|
|
num_cpus = "1.17.0"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sqlx = { version = "0.8.6", default-features = false, features = ["runtime-tokio", "sqlite", "macros", "migrate"] }
|
|
thiserror = "2.0.18"
|
|
tracing = "0.1.41"
|
|
tracing-appender = "0.2.4"
|
|
tracing-subscriber = { version = "0.3.20", features = ["env-filter", "fmt"] }
|
|
tokio = { version = "1.52.3", features = ["full"] }
|
|
uniffi = { version = "=0.29.4", features = ["tokio"] }
|
|
uuid = { version = "1.23.3", features = ["v4", "serde"] }
|
|
walkdir = "2.5.0"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
secret-service = { version = "5.1.0", default-features = false, features = ["rt-tokio-crypto-rust"] }
|
|
|
|
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
|
|
security-framework = { version = "3.7.0", features = ["OSX_10_15"] }
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
|
jni = "0.21.1"
|
|
ndk-context = "0.1.1"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
windows-sys = { version = "0.61.2", features = ["Win32_Foundation", "Win32_Security_Cryptography", "Win32_Storage_FileSystem"] }
|
|
|
|
[dev-dependencies]
|
|
iroh-relay = { version = "1.0.3", features = ["server"] }
|
|
secret-service = { version = "5.1.0", default-features = false, features = ["rt-tokio-crypto-rust"] }
|
|
tempfile = "3.27.0"
|