2021-11-22 11:28:30 -05:00
|
|
|
[package]
|
|
|
|
name = "veilid-core"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["John Smith <nobody@example.com>"]
|
2022-01-04 14:25:32 -05:00
|
|
|
edition = "2021"
|
2021-11-22 11:28:30 -05:00
|
|
|
build = "build.rs"
|
|
|
|
license = "LGPL-2.0-or-later OR MPL-2.0 OR (MIT AND BSD-3-Clause)"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "staticlib", "rlib"]
|
|
|
|
|
|
|
|
[features]
|
|
|
|
android_tests = []
|
2022-01-31 08:52:11 -05:00
|
|
|
ios_tests = [ "simplelog", "backtrace" ]
|
2021-11-22 11:28:30 -05:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
capnp = { version = "^0", default_features = false }
|
|
|
|
rust-fsm = "^0"
|
|
|
|
static_assertions = "^1"
|
|
|
|
log = "^0"
|
2022-01-10 22:36:54 -05:00
|
|
|
cfg-if = "^1"
|
2021-11-22 11:28:30 -05:00
|
|
|
anyhow = "^1"
|
|
|
|
thiserror = "^1"
|
|
|
|
hex = "^0"
|
|
|
|
generic-array = "^0"
|
|
|
|
secrecy = "^0"
|
|
|
|
chacha20poly1305 = "^0"
|
2022-04-03 21:35:14 -04:00
|
|
|
chacha20 = "^0"
|
2022-03-20 10:52:03 -04:00
|
|
|
hashlink = { path = "../external/hashlink", features = ["serde_impl"] }
|
2021-11-22 11:28:30 -05:00
|
|
|
serde-big-array = "^0"
|
|
|
|
futures-util = { version = "^0", default_features = false, features = ["alloc"] }
|
|
|
|
parking_lot = "^0"
|
|
|
|
lazy_static = "^1"
|
2022-01-10 22:36:54 -05:00
|
|
|
directories = "^4"
|
2021-11-22 11:28:30 -05:00
|
|
|
once_cell = "^1"
|
2022-03-08 22:32:12 -05:00
|
|
|
json = "^0"
|
2022-03-10 10:18:47 -05:00
|
|
|
flume = { version = "^0", features = ["async"] }
|
2021-11-22 11:28:30 -05:00
|
|
|
|
|
|
|
ed25519-dalek = { version = "^1", default_features = false, features = ["alloc", "u64_backend"] }
|
|
|
|
x25519-dalek = { package = "x25519-dalek-ng", version = "^1", default_features = false, features = ["u64_backend"] }
|
|
|
|
curve25519-dalek = { package = "curve25519-dalek-ng", version = "^4", default_features = false, features = ["alloc", "u64_backend"] }
|
|
|
|
# ed25519-dalek needs rand 0.7 until it updates itself
|
|
|
|
rand = "0.7"
|
2022-01-05 22:33:49 -05:00
|
|
|
# curve25519-dalek-ng is stuck on digest 0.9.0
|
|
|
|
blake3 = { version = "1.1.0", default_features = false }
|
|
|
|
digest = "0.9.0"
|
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]
|
|
|
|
async-std = { version = "^1", features = ["unstable"] }
|
|
|
|
async-tungstenite = { version = "^0", features = ["async-std-runtime", "async-tls"] }
|
|
|
|
maplit = "^1"
|
|
|
|
config = { version = "^0", features = ["yaml"] }
|
2022-01-09 12:37:25 -05:00
|
|
|
keyring-manager = { path = "../external/keyring-manager" }
|
2021-11-22 11:28:30 -05:00
|
|
|
lru = "^0"
|
|
|
|
async-tls = "^0.11"
|
|
|
|
webpki = "^0"
|
|
|
|
webpki-roots = "^0"
|
|
|
|
rustls = "^0.19"
|
|
|
|
rustls-pemfile = "^0.2"
|
|
|
|
num_cpus = "^1"
|
2022-01-29 13:53:55 -05:00
|
|
|
futures-util = { version = "^0", default-features = false, features = ["async-await", "sink", "std", "io"] }
|
2021-11-22 11:28:30 -05:00
|
|
|
keyvaluedb-sqlite = { path = "../external/keyvaluedb/keyvaluedb-sqlite" }
|
|
|
|
data-encoding = { version = "^2" }
|
|
|
|
serde = { version = "^1", features = ["derive" ] }
|
|
|
|
serde_cbor = { version = "^0" }
|
2022-02-09 09:47:36 -05:00
|
|
|
serde_json = { version = "^1" }
|
2022-01-04 14:25:32 -05:00
|
|
|
async_executors = { version = "^0", default-features = false, features = [ "async_std" ]}
|
2021-11-22 11:28:30 -05:00
|
|
|
socket2 = "^0"
|
2021-12-14 09:48:33 -05:00
|
|
|
bugsalot = "^0"
|
2021-12-16 21:57:28 -05:00
|
|
|
chrono = "^0"
|
2021-12-30 23:24:17 -05:00
|
|
|
libc = "^0"
|
2021-11-22 11:28:30 -05:00
|
|
|
|
|
|
|
# Dependencies for WASM builds only
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
|
|
wasm-bindgen = "^0"
|
|
|
|
js-sys = "^0"
|
|
|
|
wasm-bindgen-futures = "^0"
|
|
|
|
hashbrown = "^0"
|
|
|
|
lru = {version = "^0", features = ["hashbrown"] }
|
2022-03-10 09:51:53 -05:00
|
|
|
no-std-net = { path = "../external/no-std-net", features = ["serde"] }
|
2021-11-22 11:28:30 -05:00
|
|
|
keyvaluedb-web = { path = "../external/keyvaluedb/keyvaluedb-web" }
|
|
|
|
data-encoding = { version = "^2", default_features = false, features = ["alloc"] }
|
|
|
|
serde = { version = "^1", default-features = false, features = ["derive", "alloc"] }
|
|
|
|
serde_cbor = { version = "^0", default-features = false, features = ["alloc"] }
|
2022-02-09 09:47:36 -05:00
|
|
|
serde_json = { version = "^1", default-features = false, features = ["alloc"] }
|
2021-11-22 11:28:30 -05:00
|
|
|
getrandom = { version = "^0", features = ["js"] }
|
|
|
|
ws_stream_wasm = "^0"
|
2022-01-04 14:25:32 -05:00
|
|
|
async_executors = { version = "^0", default-features = false, features = [ "bindgen" ]}
|
|
|
|
async-lock = "^2"
|
2022-03-15 09:51:45 -04:00
|
|
|
send_wrapper = "^0"
|
2021-11-22 11:28:30 -05:00
|
|
|
|
|
|
|
# Configuration for WASM32 'web-sys' crate
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
|
|
|
|
version = "^0"
|
|
|
|
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"
|
|
|
|
jni-sys = "^0"
|
|
|
|
ndk = { version = "^0", features = ["trace"] }
|
|
|
|
ndk-glue = { version = "^0", features = ["logger"] }
|
|
|
|
android_logger = { version = "^0" }
|
|
|
|
backtrace = { version = "^0" }
|
|
|
|
|
2021-12-30 23:24:17 -05:00
|
|
|
# Dependenices for all Unix (Linux, Android, MacOS, iOS)
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
ifstructs = "^0"
|
|
|
|
|
|
|
|
# Dependencies for Linux or Android
|
|
|
|
[target.'cfg(any(target_os = "android",target_os = "linux"))'.dependencies]
|
|
|
|
rtnetlink = { version = "^0", default-features = false, features = [ "smol_socket" ] }
|
|
|
|
|
2022-01-15 18:24:37 -05:00
|
|
|
# Dependencies for Windows
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
|
|
winapi = { version = "^0", features = [ "iptypes", "iphlpapi" ] }
|
|
|
|
|
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]
|
2022-01-31 08:52:11 -05:00
|
|
|
simplelog = { version = "^0", optional = true }
|
|
|
|
backtrace = { version = "^0", optional = true }
|
2021-11-22 11:28:30 -05:00
|
|
|
|
|
|
|
# Rusqlite configuration to ensure platforms that don't come with sqlite get it bundled
|
|
|
|
# Except WASM which doesn't use sqlite
|
|
|
|
[target.'cfg(all(not(target_os = "ios"),not(target_os = "android"),not(target_arch = "wasm32")))'.dependencies.rusqlite]
|
|
|
|
version = "^0"
|
|
|
|
features = ["bundled"]
|
|
|
|
|
|
|
|
### DEV DEPENDENCIES
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
serial_test = "^0"
|
|
|
|
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
|
|
|
|
simplelog = { version = "^0", features=["test"] }
|
|
|
|
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
|
|
|
wasm-bindgen-test = "^0"
|
2022-03-15 09:33:34 -04:00
|
|
|
console_error_panic_hook = "^0"
|
|
|
|
wee_alloc = "^0"
|
|
|
|
wasm-logger = "^0"
|
2021-11-22 11:28:30 -05:00
|
|
|
|
|
|
|
### BUILD OPTIONS
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
capnpc = "^0"
|
|
|
|
|
|
|
|
[package.metadata.wasm-pack.profile.release]
|
|
|
|
wasm-opt = ["-O", "--enable-mutable-globals"]
|