crate updates

This commit is contained in:
Christien Rioux 2024-07-17 19:09:28 -04:00
parent 4a55cd08c3
commit 052a703e9c
6 changed files with 82 additions and 82 deletions

View file

@ -60,78 +60,78 @@ veilid_core_ios_tests = ["dep:tracing-oslog"]
veilid-tools = { version = "0.3.3", path = "../veilid-tools", features = [
"tracing",
], default-features = false }
paste = "1.0.14"
paste = "1.0.15"
once_cell = "1.19.0"
backtrace = "0.3.69"
num-traits = "0.2.17"
backtrace = "0.3.71"
num-traits = "0.2.19"
shell-words = "1.1.0"
static_assertions = "1.1.0"
cfg-if = "1.0.0"
hex = "0.4.3"
lazy_static = "1.4.0"
lazy_static = "1.5.0"
directories = "5.0.1"
# Logging
tracing = { version = "0.1.40", features = ["log", "attributes"] }
tracing-subscriber = "0.3.18"
tracing-error = "0.2.0"
eyre = "0.6.11"
thiserror = "1.0.50"
eyre = "0.6.12"
thiserror = "1.0.63"
# Data structures
enumset = { version = "1.1.3", features = ["serde"] }
keyvaluedb = "0.1.2"
range-set-blaze = "0.1.13"
range-set-blaze = "0.1.16"
weak-table = "0.3.2"
hashlink = { package = "veilid-hashlink", version = "0.1.0", features = [
"serde_impl",
] }
# System
futures-util = { version = "0.3.29", default-features = false, features = [
futures-util = { version = "0.3.30", default-features = false, features = [
"alloc",
] }
flume = { version = "0.11.0", features = ["async"] }
parking_lot = "0.12.1"
lock_api = "0.4.11"
parking_lot = "0.12.3"
lock_api = "0.4.12"
stop-token = { version = "0.7.0", default-features = false }
# Crypto
ed25519-dalek = { version = "2.1.0", default-features = false, features = [
ed25519-dalek = { version = "2.1.1", default-features = false, features = [
"alloc",
"rand_core",
"digest",
"zeroize",
] }
x25519-dalek = { version = "2.0.0", default-features = false, features = [
x25519-dalek = { version = "2.0.1", default-features = false, features = [
"alloc",
"static_secrets",
"zeroize",
"precomputed-tables",
] }
curve25519-dalek = { version = "4.1.1", default-features = false, features = [
curve25519-dalek = { version = "4.1.3", default-features = false, features = [
"alloc",
"zeroize",
"precomputed-tables",
] }
blake3 = { version = "1.5.0" }
blake3 = { version = "1.5.3" }
chacha20poly1305 = "0.10.1"
chacha20 = "0.9.1"
argon2 = "0.5.2"
argon2 = "0.5.3"
# Network
async-std-resolver = { version = "0.24.0", optional = true }
hickory-resolver = { version = "0.24.0", optional = true }
async-std-resolver = { version = "0.24.1", optional = true }
hickory-resolver = { version = "0.24.1", optional = true }
# Serialization
capnp = { version = "0.19.5", default-features = false, features = ["alloc"] }
serde = { version = "1.0.193", features = ["derive", "rc"] }
serde_json = { version = "1.0.108" }
capnp = { version = "0.19.6", default-features = false, features = ["alloc"] }
serde = { version = "1.0.204", features = ["derive", "rc"] }
serde_json = { version = "1.0.120" }
serde-big-array = "0.5.1"
json = "0.12.4"
data-encoding = { version = "2.5.0" }
schemars = "0.8.16"
lz4_flex = { version = "0.11.1", default-features = false, features = [
data-encoding = { version = "2.6.0" }
schemars = "0.8.21"
lz4_flex = { version = "0.11.3", default-features = false, features = [
"safe-encode",
"safe-decode",
] }
@ -144,18 +144,18 @@ indent = "0.1.1"
# Tools
config = { version = "0.13.4", features = ["yaml"] }
bugsalot = { package = "veilid-bugsalot", version = "0.2.0" }
chrono = "0.4.31"
libc = "0.2.151"
chrono = "0.4.38"
libc = "0.2.155"
nix = "0.27.1"
# System
async-std = { version = "1.12.0", features = ["unstable"], optional = true }
sysinfo = { version = "^0.30.6" }
tokio = { version = "1.35.0", features = ["full"], optional = true }
tokio-util = { version = "0.7.10", features = ["compat"], optional = true }
tokio-stream = { version = "0.1.14", features = ["net"], optional = true }
sysinfo = { version = "^0.30.13" }
tokio = { version = "1.38.1", features = ["full"], optional = true }
tokio-util = { version = "0.7.11", features = ["compat"], optional = true }
tokio-stream = { version = "0.1.15", features = ["net"], optional = true }
async-io = { version = "1.13.0" }
futures-util = { version = "0.3.29", default-features = false, features = [
futures-util = { version = "0.3.30", default-features = false, features = [
"async-await",
"sink",
"std",
@ -171,10 +171,10 @@ async-tungstenite = { version = "0.27.0", features = ["async-tls"] }
igd = { package = "veilid-igd", version = "0.1.1" }
async-tls = { version = "0.13.0" }
webpki = "0.22.4"
webpki-roots = "0.25.3"
rustls = "0.21.10"
webpki-roots = "0.25.4"
rustls = "0.21.12"
rustls-pemfile = "1.0.4"
socket2 = { version = "0.5.5", features = ["all"] }
socket2 = { version = "0.5.7", features = ["all"] }
# Dependencies for WASM builds only
[target.'cfg(target_arch = "wasm32")'.dependencies]
@ -184,7 +184,7 @@ veilid-tools = { version = "0.3.3", path = "../veilid-tools", default-features =
] }
# Tools
getrandom = { version = "0.2.11", features = ["js"] }
getrandom = { version = "0.2.15", features = ["js"] }
# System
async_executors = { version = "0.7.0", default-features = false, features = [
@ -192,15 +192,15 @@ async_executors = { version = "0.7.0", default-features = false, features = [
"timer",
] }
async-lock = "2.8.0"
wasm-bindgen = "0.2.89"
js-sys = "0.3.66"
wasm-bindgen-futures = "0.4.39"
wasm-bindgen = "0.2.92"
js-sys = "0.3.69"
wasm-bindgen-futures = "0.4.42"
send_wrapper = { version = "0.6.0", features = ["futures"] }
serde_bytes = { version = "0.11", default-features = false, features = [
"alloc",
] }
tsify = { version = "0.4.5", features = ["js"] }
serde-wasm-bindgen = "0.6.3"
serde-wasm-bindgen = "0.6.5"
# Network
ws_stream_wasm = "0.7.4"
@ -214,7 +214,7 @@ keyvaluedb-web = "0.1.2"
### Configuration for WASM32 'web-sys' crate
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3.66"
version = "0.3.69"
features = [
'Document',
'HtmlDocument',
@ -234,7 +234,7 @@ 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 }
paranoid-android = { version = "0.2.2", optional = true }
# Dependencies for Windows
[target.'cfg(target_os = "windows")'.dependencies]
@ -252,7 +252,7 @@ tracing-oslog = { version = "0.1.2", optional = true }
### DEV DEPENDENCIES
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
simplelog = { version = "0.12.1", features = ["test"] }
simplelog = { version = "0.12.2", features = ["test"] }
serial_test = "2.0.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
@ -260,7 +260,7 @@ tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
serial_test = { version = "2.0.0", default-features = false, features = [
"async",
] }
wasm-bindgen-test = "0.3.39"
wasm-bindgen-test = "0.3.42"
console_error_panic_hook = "0.1.7"
wee_alloc = "0.4.5"
wasm-logger = "0.2.0"