veilid/veilid-core/Cargo.toml

280 lines
7.0 KiB
TOML
Raw Normal View History

2021-11-22 11:28:30 -05:00
[package]
2023-09-02 10:41:59 -04:00
# --- Bumpversion match - do not reorder
2021-11-22 11:28:30 -05:00
name = "veilid-core"
2024-04-28 18:33:07 -04:00
version = "0.3.2"
2023-09-02 10:41:59 -04:00
# ---
2023-09-02 12:28:31 -04:00
description = "Core library used to create a Veilid node and operate it as part of an application"
2023-07-19 12:48:44 -04:00
authors = ["Veilid Team <contact@veilid.com>"]
2022-01-04 14:25:32 -05:00
edition = "2021"
2021-11-22 11:28:30 -05:00
build = "build.rs"
2023-07-19 12:48:44 -04:00
license = "MPL-2.0"
resolver = "2"
2021-11-22 11:28:30 -05:00
[lib]
crate-type = ["cdylib", "staticlib", "rlib"]
path = "src/lib.rs"
2021-11-22 11:28:30 -05:00
[features]
2023-07-02 00:17:04 -04:00
# Common features
2023-08-27 17:39:50 -04:00
default = ["enable-crypto-vld0", "rt-tokio"]
2023-09-01 18:59:43 -04:00
default-async-std = ["enable-crypto-vld0", "rt-async-std"]
2023-08-29 16:15:47 -04:00
default-wasm = ["enable-crypto-vld0"]
2023-09-01 18:59:43 -04:00
# Runtimes
2023-08-22 13:19:59 -04:00
rt-async-std = [
"async-std",
"async-std-resolver",
"hickory-resolver",
2023-08-22 13:19:59 -04:00
"async_executors/async_std",
"veilid-tools/rt-async-std",
]
rt-tokio = [
"tokio",
"tokio-util",
"tokio-stream",
"hickory-resolver/tokio-runtime",
2023-08-22 13:19:59 -04:00
"async_executors/tokio_tp",
"async_executors/tokio_io",
"async_executors/tokio_timer",
"veilid-tools/rt-tokio",
]
2022-06-27 23:46:29 -04:00
2023-07-02 00:17:04 -04:00
# Crypto support features
enable-crypto-vld0 = []
enable-crypto-none = []
# Debugging and testing features
verbose-tracing = []
tracking = []
crypto-test = ["enable-crypto-vld0", "enable-crypto-none"]
crypto-test-none = ["enable-crypto-none"]
2023-02-13 16:12:46 -05:00
veilid_core_android_tests = ["dep:paranoid-android"]
veilid_core_ios_tests = ["dep:tracing-oslog"]
2021-11-22 11:28:30 -05:00
2023-07-15 16:18:13 -04:00
### DEPENDENCIES
2021-11-22 11:28:30 -05:00
[dependencies]
2023-07-15 16:18:13 -04:00
# Tools
2024-04-28 18:33:07 -04:00
veilid-tools = { version = "0.3.2", path = "../veilid-tools", features = [
2023-08-27 17:39:50 -04:00
"tracing",
], default-features = false }
paste = "1.0.14"
2023-12-15 13:49:10 -05:00
once_cell = "1.19.0"
2023-09-16 21:56:19 -04:00
backtrace = "0.3.69"
2023-12-15 13:49:10 -05:00
num-traits = "0.2.17"
2023-07-15 16:18:13 -04:00
shell-words = "1.1.0"
static_assertions = "1.1.0"
cfg-if = "1.0.0"
hex = "0.4.3"
lazy_static = "1.4.0"
directories = "5.0.1"
2023-07-15 16:18:13 -04:00
# Logging
2023-12-15 13:49:10 -05:00
tracing = { version = "0.1.40", features = ["log", "attributes"] }
tracing-subscriber = "0.3.18"
tracing-error = "0.2.0"
2023-12-15 13:49:10 -05:00
eyre = "0.6.11"
thiserror = "1.0.50"
2023-07-15 16:18:13 -04:00
# Data structures
2023-12-15 13:49:10 -05:00
enumset = { version = "1.1.3", features = ["serde"] }
2023-09-21 15:53:25 -04:00
keyvaluedb = "0.1.1"
2023-12-15 13:49:10 -05:00
range-set-blaze = "0.1.13"
2023-07-15 16:18:13 -04:00
weak-table = "0.3.2"
2023-09-03 09:53:00 -04:00
hashlink = { package = "veilid-hashlink", version = "0.1.0", features = [
2023-09-02 15:47:19 -04:00
"serde_impl",
] }
2023-07-15 16:18:13 -04:00
# System
2023-12-15 13:49:10 -05:00
futures-util = { version = "0.3.29", default-features = false, features = [
2023-08-22 13:19:59 -04:00
"alloc",
] }
flume = { version = "0.11.0", features = ["async"] }
parking_lot = "0.12.1"
2023-12-15 13:49:10 -05:00
lock_api = "0.4.11"
stop-token = { version = "0.7.0", default-features = false }
2023-05-29 17:09:29 -04:00
2023-07-15 16:18:13 -04:00
# Crypto
2023-12-15 13:49:10 -05:00
ed25519-dalek = { version = "2.1.0", default-features = false, features = [
2023-08-22 13:19:59 -04:00
"alloc",
"rand_core",
"digest",
"zeroize",
] }
2023-09-16 13:52:32 -04:00
x25519-dalek = { version = "2.0.0", default-features = false, features = [
2023-08-22 13:19:59 -04:00
"alloc",
"static_secrets",
"zeroize",
"precomputed-tables",
] }
2023-12-15 13:49:10 -05:00
curve25519-dalek = { version = "4.1.1", default-features = false, features = [
2023-08-22 13:19:59 -04:00
"alloc",
"zeroize",
"precomputed-tables",
] }
2023-12-15 13:49:10 -05:00
blake3 = { version = "1.5.0" }
chacha20poly1305 = "0.10.1"
chacha20 = "0.9.1"
2023-09-16 21:56:19 -04:00
argon2 = "0.5.2"
2023-05-29 17:09:29 -04:00
2023-07-15 16:18:13 -04:00
# Network
2024-03-17 18:48:56 -04:00
async-std-resolver = { version = "0.24.0", optional = true }
hickory-resolver = { version = "0.24.0", optional = true }
2023-05-29 17:09:29 -04:00
2023-07-15 16:18:13 -04:00
# Serialization
2024-05-14 08:46:44 -04:00
capnp = { version = "0.19.4", default-features = false, features = ["alloc"] }
2023-12-15 13:49:10 -05:00
serde = { version = "1.0.193", features = ["derive", "rc"] }
serde_json = { version = "1.0.108" }
serde-big-array = "0.5.1"
json = "0.12.4"
2023-12-15 13:49:10 -05:00
data-encoding = { version = "2.5.0" }
schemars = "0.8.16"
2023-08-22 13:19:59 -04:00
lz4_flex = { version = "0.11.1", default-features = false, features = [
"safe-encode",
"safe-decode",
] }
2021-11-22 11:28:30 -05:00
# Dependencies for native builds only
# Linux, Windows, Mac, iOS, Android
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
2023-07-15 16:18:13 -04:00
# Tools
2023-12-15 13:49:10 -05:00
config = { version = "0.13.4", features = ["yaml"] }
2024-03-03 18:38:25 -05:00
bugsalot = { package = "veilid-bugsalot", version = "0.2.0" }
2023-09-16 21:56:19 -04:00
chrono = "0.4.31"
2023-12-15 13:49:10 -05:00
libc = "0.2.151"
2023-09-16 21:56:19 -04:00
nix = "0.27.1"
2023-07-15 16:18:13 -04:00
# System
2023-08-22 13:19:59 -04:00
async-std = { version = "1.12.0", features = ["unstable"], optional = true }
2024-03-02 17:45:26 -05:00
sysinfo = { version = "^0.30.6" }
2023-12-15 13:49:10 -05:00
tokio = { version = "1.35.0", features = ["full"], optional = true }
tokio-util = { version = "0.7.10", features = ["compat"], optional = true }
2023-08-22 13:19:59 -04:00
tokio-stream = { version = "0.1.14", features = ["net"], optional = true }
async-io = { version = "1.13.0" }
2023-12-15 13:49:10 -05:00
futures-util = { version = "0.3.29", default-features = false, features = [
2023-08-22 13:19:59 -04:00
"async-await",
"sink",
"std",
"io",
] }
2023-07-15 16:18:13 -04:00
# Data structures
2023-12-15 13:49:10 -05:00
keyring-manager = "0.5.1"
2023-09-21 15:53:25 -04:00
keyvaluedb-sqlite = "0.1.1"
2023-07-15 16:18:13 -04:00
# Network
async-tungstenite = { package = "veilid-async-tungstenite", version = "0.23.0", features = [
"async-tls",
] }
2023-10-13 17:57:38 -04:00
igd = { package = "veilid-igd", version = "0.1.1" }
async-tls = { package = "veilid-async-tls", version = "0.12.0" }
2023-12-15 13:49:10 -05:00
webpki = "0.22.4"
webpki-roots = "0.25.3"
rustls = "0.21.10"
rustls-pemfile = "1.0.4"
socket2 = { version = "0.5.5", features = ["all"] }
2021-11-22 11:28:30 -05:00
# Dependencies for WASM builds only
[target.'cfg(target_arch = "wasm32")'.dependencies]
2023-07-15 16:18:13 -04:00
2024-04-28 18:33:07 -04:00
veilid-tools = { version = "0.3.2", path = "../veilid-tools", default-features = false, features = [
2023-08-29 16:15:47 -04:00
"rt-wasm-bindgen",
] }
2023-07-15 16:18:13 -04:00
# Tools
2023-12-15 13:49:10 -05:00
getrandom = { version = "0.2.11", features = ["js"] }
2023-07-15 16:18:13 -04:00
# System
2023-08-22 13:19:59 -04:00
async_executors = { version = "0.7.0", default-features = false, features = [
"bindgen",
"timer",
] }
async-lock = "2.8.0"
2023-12-15 13:49:10 -05:00
wasm-bindgen = "0.2.89"
js-sys = "0.3.66"
wasm-bindgen-futures = "0.4.39"
send_wrapper = { version = "0.6.0", features = ["futures"] }
serde_bytes = { version = "0.11", default_features = false, features = [
"alloc",
] }
2023-08-31 22:01:00 -04:00
tsify = { version = "0.4.5", features = ["js"] }
2023-12-15 13:49:10 -05:00
serde-wasm-bindgen = "0.6.3"
2023-07-15 16:18:13 -04:00
# Network
ws_stream_wasm = "0.7.4"
2023-07-15 16:18:13 -04:00
# Logging
wasm-logger = "0.2.0"
tracing-wasm = "0.2.1"
2021-11-22 11:28:30 -05:00
2023-07-15 16:18:13 -04:00
# Data Structures
2023-09-21 15:53:25 -04:00
keyvaluedb-web = "0.1.1"
2023-07-15 16:18:13 -04:00
### Configuration for WASM32 'web-sys' crate
2021-11-22 11:28:30 -05:00
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
2023-12-15 13:49:10 -05:00
version = "0.3.66"
2021-11-22 11:28:30 -05:00
features = [
2022-04-07 09:55:09 -04:00
'Document',
'HtmlDocument',
2022-01-03 23:58:26 -05:00
# 'Element',
# 'HtmlElement',
# 'Node',
'IdbFactory',
'IdbOpenDbRequest',
'Storage',
'Location',
'Window',
2021-11-22 11:28:30 -05:00
]
2021-12-30 23:24:17 -05:00
# Dependencies for Android
2021-11-22 11:28:30 -05:00
[target.'cfg(target_os = "android")'.dependencies]
jni = "0.21.1"
jni-sys = "0.3.0"
ndk = { version = "0.7.0" }
ndk-glue = { version = "0.7.0", features = ["logger"] }
paranoid-android = { version = "0.2.1", optional = true }
2021-11-22 11:28:30 -05:00
2022-01-15 18:24:37 -05:00
# Dependencies for Windows
[target.'cfg(target_os = "windows")'.dependencies]
2023-08-22 13:19:59 -04:00
winapi = { version = "0.3.9", features = ["iptypes", "iphlpapi"] }
windows = { version = "0.51.1", features = [
"Win32_NetworkManagement_Dns",
"Win32_Foundation",
] }
windows-permissions = "0.2.4"
2022-01-15 18:24:37 -05:00
2021-12-30 23:24:17 -05:00
# Dependencies for iOS
2021-11-22 11:28:30 -05:00
[target.'cfg(target_os = "ios")'.dependencies]
tracing-oslog = { version = "0.1.2", optional = true }
2021-11-22 11:28:30 -05:00
### DEV DEPENDENCIES
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
2023-08-22 13:19:59 -04:00
simplelog = { version = "0.12.1", features = ["test"] }
2023-10-22 11:24:15 -04:00
serial_test = "2.0.0"
2023-12-15 13:49:10 -05:00
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
2021-11-22 11:28:30 -05:00
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
2023-10-22 11:24:15 -04:00
serial_test = { version = "2.0.0", default-features = false, features = [
"async",
] }
2023-12-15 13:49:10 -05:00
wasm-bindgen-test = "0.3.39"
console_error_panic_hook = "0.1.7"
wee_alloc = "0.4.5"
wasm-logger = "0.2.0"
2021-11-22 11:28:30 -05:00
### BUILD OPTIONS
[build-dependencies]
2024-05-14 08:46:44 -04:00
capnpc = "0.19.0"
glob = "0.3.1"
2023-12-15 13:49:10 -05:00
filetime = "0.2.23"
sha2 = "0.10.8"
hex = "0.4.3"
2021-11-22 11:28:30 -05:00
[package.metadata.wasm-pack.profile.release]
wasm-opt = ["-O", "--enable-mutable-globals"]