compile-lock most wasm32 incompatibilities

This commit is contained in:
bitfl0wer 2023-11-13 13:55:55 +01:00
parent cc80bb50be
commit af0178e15a
2 changed files with 335 additions and 320 deletions

615
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -16,7 +16,7 @@ backend = ["dep:poem", "dep:sqlx"]
client = [] client = []
[dependencies] [dependencies]
tokio = { version = "1.29.1", features = ["macros"] } tokio = { version = "1.34.0", features = ["macros", "sync"] }
serde = { version = "1.0.188", features = ["derive", "rc"] } serde = { version = "1.0.188", features = ["derive", "rc"] }
serde_json = { version = "1.0.105", features = ["raw_value"] } serde_json = { version = "1.0.105", features = ["raw_value"] }
serde-aux = "4.2.0" serde-aux = "4.2.0"
@ -27,18 +27,28 @@ url = "2.4.0"
chrono = { version = "0.4.26", features = ["serde"] } chrono = { version = "0.4.26", features = ["serde"] }
regex = "1.9.4" regex = "1.9.4"
custom_error = "1.9.2" custom_error = "1.9.2"
native-tls = "0.2.11" futures-util = "0.3.28"
http = "0.2.9"
base64 = "0.21.3"
bitflags = { version = "2.4.0", features = ["serde"] }
lazy_static = "1.4.0"
poem = { version = "1.3.57", optional = true }
thiserror = "1.0.47"
jsonwebtoken = "8.3.0"
log = "0.4.20"
async-trait = "0.1.73"
chorus-macros = "0.2.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
rustls = "0.21.8"
rustls-native-certs = "0.6.3"
rand = "0.8.5"
hostname = "0.3.1"
tokio-tungstenite = { version = "0.20.0", features = [ tokio-tungstenite = { version = "0.20.0", features = [
"rustls-tls-native-roots", "rustls-tls-native-roots",
"rustls-native-certs", "rustls-native-certs",
] } ] }
futures-util = "0.3.28" native-tls = "0.2.11"
http = "0.2.9"
base64 = "0.21.3"
hostname = "0.3.1"
bitflags = { version = "2.4.0", features = ["serde"] }
lazy_static = "1.4.0"
poem = { version = "1.3.57", optional = true }
sqlx = { version = "0.7.1", features = [ sqlx = { version = "0.7.1", features = [
"mysql", "mysql",
"sqlite", "sqlite",
@ -48,15 +58,11 @@ sqlx = { version = "0.7.1", features = [
"runtime-tokio-native-tls", "runtime-tokio-native-tls",
"any", "any",
], optional = true } ], optional = true }
thiserror = "1.0.47"
jsonwebtoken = "8.3.0" [target.'cfg(target_arch = "wasm32")'.dependencies]
log = "0.4.20"
async-trait = "0.1.73"
chorus-macros = "0.2.0"
rustls = "0.21.8"
rustls-native-certs = "0.6.3"
rand = "0.8.5"
ws_stream_wasm = "0.7.4" ws_stream_wasm = "0.7.4"
getrandom = { version = "0.2.11", features = ["js"] }
tokio-tungstenite = { version = "0.20.0", default-features = false }
[dev-dependencies] [dev-dependencies]
lazy_static = "1.4.0" lazy_static = "1.4.0"