veilid/veilid-tools/Cargo.toml

100 lines
3.2 KiB
TOML
Raw Normal View History

2022-11-27 02:37:23 +00:00
[package]
2022-11-27 03:18:55 +00:00
name = "veilid-tools"
2022-11-27 02:37:23 +00:00
version = "0.1.0"
authors = ["John Smith <nobody@example.com>"]
edition = "2021"
license = "LGPL-2.0-or-later OR MPL-2.0 OR (MIT AND BSD-3-Clause)"
[lib]
2022-11-29 17:16:28 +00:00
# staticlib for iOS tests, cydlib for android tests, rlib for everything else
crate-type = [ "cdylib", "staticlib", "rlib" ]
2022-11-27 02:37:23 +00:00
[features]
2022-11-28 03:33:41 +00:00
default = []
2022-11-27 14:00:20 +00:00
rt-async-std = [ "async-std", "async_executors/async_std", ]
rt-tokio = [ "tokio", "tokio-util", "async_executors/tokio_tp", "async_executors/tokio_io", "async_executors/tokio_timer", ]
2022-11-27 02:37:23 +00:00
2022-11-30 14:39:12 +00:00
veilid_tools_android_tests = [ "dep:tracing-android" ]
veilid_tools_ios_tests = []
2022-11-28 03:33:41 +00:00
tracing = [ "dep:tracing", "dep:tracing-subscriber" ]
2022-11-27 02:37:23 +00:00
[dependencies]
2022-11-27 03:18:55 +00:00
tracing = { version = "^0", features = ["log", "attributes"], optional = true }
2022-11-28 03:33:41 +00:00
tracing-subscriber = { version = "^0", optional = true }
log = { version = "^0" }
2022-11-27 02:37:23 +00:00
eyre = "^0"
static_assertions = "^1"
cfg-if = "^1"
thiserror = "^1"
futures-util = { version = "^0", default_features = false, features = ["alloc"] }
parking_lot = "^0"
once_cell = "^1"
owo-colors = "^3"
stop-token = { version = "^0", default-features = false }
2022-11-28 03:33:41 +00:00
rand = "^0.7"
2022-11-30 00:22:33 +00:00
rust-fsm = "^0"
2022-11-27 02:37:23 +00:00
# Dependencies for native builds only
# Linux, Windows, Mac, iOS, Android
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
async-std = { version = "^1", features = ["unstable"], optional = true}
tokio = { version = "^1", features = ["full"], optional = true}
tokio-util = { version = "^0", features = ["compat"], optional = true}
maplit = "^1"
futures-util = { version = "^0", default-features = false, features = ["async-await", "sink", "std", "io"] }
libc = "^0"
nix = "^0"
# Dependencies for WASM builds only
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "^0"
js-sys = "^0"
wasm-bindgen-futures = "^0"
async_executors = { version = "^0", default-features = false, features = [ "bindgen", "timer" ]}
async-lock = "^2"
2022-11-27 03:18:55 +00:00
send_wrapper = { version = "^0.6", features = ["futures"] }
2022-11-27 02:37:23 +00:00
# Dependencies for Android
[target.'cfg(target_os = "android")'.dependencies]
jni = "^0"
jni-sys = "^0"
2022-11-30 21:15:54 +00:00
ndk = { version = "^0.7" }
ndk-glue = { version = "^0.7", features = ["logger"] }
2022-11-29 17:16:28 +00:00
lazy_static = "^1.4.0"
2022-11-27 15:52:07 +00:00
tracing-android = { version = "^0", optional = true }
2022-11-29 17:16:28 +00:00
android-logd-logger = "0.2.1"
2022-11-27 02:37:23 +00:00
# Dependencies for Windows
2022-11-27 14:00:20 +00:00
# [target.'cfg(target_os = "windows")'.dependencies]
# windows = { version = "^0", features = [ "Win32_NetworkManagement_Dns", "Win32_Foundation", "alloc" ]}
# windows-permissions = "^0"
2022-11-27 02:37:23 +00:00
# Dependencies for iOS
[target.'cfg(target_os = "ios")'.dependencies]
2022-11-28 03:33:41 +00:00
simplelog = { version = "^0.12", features = [ "test" ] }
2022-11-27 02:37:23 +00:00
### DEV DEPENDENCIES
[dev-dependencies]
serial_test = "^0"
2022-11-28 03:33:41 +00:00
simplelog = { version = "^0.12", features = [ "test" ] }
2022-11-27 02:37:23 +00:00
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
2022-11-27 15:52:07 +00:00
console_error_panic_hook = "^0"
2022-11-27 02:37:23 +00:00
wasm-bindgen-test = "^0"
wee_alloc = "^0"
wasm-logger = "^0"
2022-11-27 15:52:07 +00:00
tracing-wasm = { version = "^0" }
parking_lot = { version = "^0", features = ["wasm-bindgen"]}
2022-11-27 02:37:23 +00:00
### BUILD OPTIONS
[package.metadata.wasm-pack.profile.release]
wasm-opt = ["-O", "--enable-mutable-globals"]
2022-11-28 03:33:41 +00:00
[package.metadata.ios]
build_targets = ["aarch64-apple-ios", "aarch64-apple-ios-sim", "x86_64-apple-ios"]
deployment_target = "12.0"
build_id_prefix = "com.veilid.veilidtools"