Update compatible dependencies (#3069)

This commit is contained in:
Tobie Morgan Hitchcock 2023-12-05 12:12:56 +00:00 committed by GitHub
parent 7cd921b8eb
commit 1d3844ff69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 427 additions and 222 deletions

616
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -36,12 +36,12 @@ strip = false
[dependencies] [dependencies]
argon2 = "0.5.2" argon2 = "0.5.2"
axum = { version = "0.6.20", features = ["tracing", "ws", "headers"] } axum = { version = "0.6.20", features = ["tracing", "ws", "headers"] }
axum-client-ip = "0.4.2" axum-client-ip = "0.5.0"
axum-extra = { version = "0.7.7", features = ["query", "typed-routing"] } axum-extra = { version = "0.7.7", features = ["query", "typed-routing"] }
axum-server = { version = "0.5.1", features = ["tls-rustls"] } axum-server = { version = "0.5.1", features = ["tls-rustls"] }
base64 = "0.21.5" base64 = "0.21.5"
bytes = "1.5.0" bytes = "1.5.0"
clap = { version = "4.4.8", features = ["env", "derive", "wrap_help", "unicode"] } clap = { version = "4.4.11", features = ["env", "derive", "wrap_help", "unicode"] }
futures = "0.3.29" futures = "0.3.29"
futures-util = "0.3.29" futures-util = "0.3.29"
glob = "0.3.1" glob = "0.3.1"
@ -55,7 +55,7 @@ opentelemetry-otlp = { version = "0.12.0", features = ["metrics"] }
pin-project-lite = "0.2.13" pin-project-lite = "0.2.13"
rand = "0.8.5" rand = "0.8.5"
reqwest = { version = "0.11.22", default-features = false, features = ["blocking", "gzip"] } reqwest = { version = "0.11.22", default-features = false, features = ["blocking", "gzip"] }
rustyline = { version = "11.0.0", features = ["derive"] } rustyline = { version = "12.0.0", features = ["derive"] }
serde = { version = "1.0.193", features = ["derive"] } serde = { version = "1.0.193", features = ["derive"] }
serde_cbor = "0.11.2" serde_cbor = "0.11.2"
serde_json = "1.0.108" serde_json = "1.0.108"
@ -74,7 +74,10 @@ urlencoding = "2.1.3"
uuid = { version = "1.6.1", features = ["serde", "js", "v4", "v7"] } uuid = { version = "1.6.1", features = ["serde", "js", "v4", "v7"] }
[target.'cfg(unix)'.dependencies] [target.'cfg(unix)'.dependencies]
nix = "0.26.4" nix = { version = "0.27.1", features = ["user"] }
[target.'cfg(unix)'.dev-dependencies]
nix = { version = "0.27.1", features = ["signal", "user"] }
[target.'cfg(any(target_os = "linux", target_os = "macos", target_os = "ios"))'.dependencies] [target.'cfg(any(target_os = "linux", target_os = "macos", target_os = "ios"))'.dependencies]
mimalloc = { version = "0.1.39", default-features = false } mimalloc = { version = "0.1.39", default-features = false }
@ -86,7 +89,7 @@ jemallocator = "0.5.4"
assert_fs = "1.0.13" assert_fs = "1.0.13"
env_logger = "0.10.1" env_logger = "0.10.1"
opentelemetry-proto = { version = "0.2.0", features = ["gen-tonic", "traces", "metrics", "logs"] } opentelemetry-proto = { version = "0.2.0", features = ["gen-tonic", "traces", "metrics", "logs"] }
rcgen = "0.10.0" rcgen = "0.11.3"
serial_test = "2.0.0" serial_test = "2.0.0"
temp-env = { version = "0.3.6", features = ["async_closure"] } temp-env = { version = "0.3.6", features = ["async_closure"] }
test-log = { version = "0.2.13", features = ["trace"] } test-log = { version = "0.2.13", features = ["trace"] }
@ -94,7 +97,7 @@ tokio-stream = { version = "0.1", features = ["net"] }
tokio-tungstenite = { version = "0.20.1" } tokio-tungstenite = { version = "0.20.1" }
tonic = "0.8.3" tonic = "0.8.3"
ulid = "1.1.0" ulid = "1.1.0"
wiremock = "0.5.21" wiremock = "0.5.22"
[package.metadata.deb] [package.metadata.deb]
maintainer-scripts = "pkg/deb/" maintainer-scripts = "pkg/deb/"

View file

@ -56,7 +56,7 @@ argon2 = "0.5.2"
ascii = { version = "0.3.2", package = "any_ascii" } ascii = { version = "0.3.2", package = "any_ascii" }
async-recursion = "1.0.5" async-recursion = "1.0.5"
base64_lib = { version = "0.21.5", package = "base64" } base64_lib = { version = "0.21.5", package = "base64" }
bcrypt = "0.14.0" bcrypt = "0.15.0"
bincode = "1.3.3" bincode = "1.3.3"
bytes = "1.5.0" bytes = "1.5.0"
cedar-policy = "2.4.2" cedar-policy = "2.4.2"
@ -67,20 +67,20 @@ deunicode = "1.4.1"
dmp = "0.2.0" dmp = "0.2.0"
echodb = { version = "0.4.0", optional = true } echodb = { version = "0.4.0", optional = true }
executor = { version = "1.8.0", package = "async-executor" } executor = { version = "1.8.0", package = "async-executor" }
flume = "0.10.14" flume = "0.11.0"
foundationdb = { version = "0.8.0", default-features = false, features = ["embedded-fdb-include"], optional = true } foundationdb = { version = "0.8.0", default-features = false, features = ["embedded-fdb-include"], optional = true }
fst = "0.4.7" fst = "0.4.7"
futures = "0.3.29" futures = "0.3.29"
futures-concurrency = "7.4.3" futures-concurrency = "7.4.3"
fuzzy-matcher = "0.3.7" fuzzy-matcher = "0.3.7"
geo = { version = "0.25.1", features = ["use-serde"] } geo = { version = "0.27.0", features = ["use-serde"] }
indexmap = { version = "1.9.3", features = ["serde"] } indexmap = { version = "2.1.0", features = ["serde"] }
indxdb = { version = "0.3.0", optional = true } indxdb = { version = "0.4.0", optional = true }
ipnet = "2.9.0" ipnet = "2.9.0"
js = { version = "=0.4.0-beta.4", package = "rquickjs", features = ["array-buffer", "bindgen", "classes", "futures", "loader", "macro", "parallel", "properties","rust-alloc"], optional = true } js = { version = "=0.4.0-beta.4", package = "rquickjs", features = ["array-buffer", "bindgen", "classes", "futures", "loader", "macro", "parallel", "properties","rust-alloc"], optional = true }
jsonwebtoken = { version = "8.3.0-surreal.1", package = "surrealdb-jsonwebtoken" } jsonwebtoken = { version = "8.3.0-surreal.1", package = "surrealdb-jsonwebtoken" }
lexicmp = "0.1.0" lexicmp = "0.1.0"
lru = "0.10.1" lru = "0.12.1"
md-5 = "0.10.6" md-5 = "0.10.6"
nanoid = "0.4.0" nanoid = "0.4.0"
native-tls = { version = "0.2.11", optional = true } native-tls = { version = "0.2.11", optional = true }
@ -107,7 +107,7 @@ serde_json = "1.0.108"
sha1 = "0.10.6" sha1 = "0.10.6"
sha2 = "0.10.8" sha2 = "0.10.8"
snap = "1.1.0" snap = "1.1.0"
speedb = { version = "0.0.3", features = ["lz4", "snappy"], optional = true } speedb = { version = "0.0.4", features = ["lz4", "snappy"], optional = true }
storekey = "0.5.0" storekey = "0.5.0"
thiserror = "1.0.50" thiserror = "1.0.50"
tikv = { version = "0.2.0-surreal.2", default-features = false, package = "surrealdb-tikv-client", optional = true } tikv = { version = "0.2.0-surreal.2", default-features = false, package = "surrealdb-tikv-client", optional = true }
@ -127,13 +127,13 @@ test-log = { version="0.2.13", features = ["trace"] }
time = { version = "0.3.30", features = ["serde"] } time = { version = "0.3.30", features = ["serde"] }
tokio = { version = "1.34.0", features = ["macros", "sync", "rt-multi-thread"] } tokio = { version = "1.34.0", features = ["macros", "sync", "rt-multi-thread"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
wiremock = "0.5.21" wiremock = "0.5.22"
[target.'cfg(target_arch = "wasm32")'.dependencies] [target.'cfg(target_arch = "wasm32")'.dependencies]
pharos = "0.5.3" pharos = "0.5.3"
tokio = { version = "1.34.0", default-features = false, features = ["rt", "sync"] } tokio = { version = "1.34.0", default-features = false, features = ["rt", "sync"] }
uuid = { version = "1.6.1", features = ["serde", "js", "v4", "v7"] } uuid = { version = "1.6.1", features = ["serde", "js", "v4", "v7"] }
wasm-bindgen-futures = "0.4.38" wasm-bindgen-futures = "0.4.39"
wasmtimer = { version = "0.2.0", default-features = false, features = ["tokio"] } wasmtimer = { version = "0.2.0", default-features = false, features = ["tokio"] }
ws_stream_wasm = "0.7.4" ws_stream_wasm = "0.7.4"