update dependencies and flake

update dependencies
This commit is contained in:
Vinzenz Schroeter 2024-11-24 16:12:38 +01:00
parent 24e0eaaf07
commit 38316169e9
9 changed files with 162 additions and 147 deletions

View file

@ -16,12 +16,12 @@ crate-type = ["rlib"]
log = "0.4"
bitvec = "1.0"
flate2 = { version = "1.0", optional = true }
bzip2 = { version = "0.4", optional = true }
bzip2 = { version = "0.5", optional = true }
zstd = { version = "0.13", optional = true }
rust-lzma = { version = "0.6.0", optional = true }
rust-lzma = { version = "0.6", optional = true }
rand = { version = "0.8", optional = true }
tungstenite = { version = "0.24.0", optional = true }
once_cell = { version = "1.20.2", optional = true }
tungstenite = { version = "0.26", optional = true }
once_cell = { version = "1.20", optional = true }
thiserror.workspace = true
[features]
@ -56,4 +56,4 @@ clap = { version = "4.5", features = ["derive"] }
workspace = true
[package.metadata.docs.rs]
all-features = true
all-features = true

View file

@ -144,7 +144,7 @@ impl Connection {
Connection::WebSocket(socket) => {
let mut socket = socket.lock().unwrap();
socket
.send(tungstenite::Message::Binary(data))
.send(tungstenite::Message::Binary(data.into()))
.map_err(SendError::WebsocketError)
}
Connection::Fake => {

View file

@ -8,7 +8,7 @@ publish = false
test = false
[build-dependencies]
cc = "1.0"
cc = "1.2"
[dependencies]
servicepoint_binding_c = { path = "../.." }

View file

@ -32,8 +32,8 @@ optional = true
[dependencies.uniffi-bindgen-go]
git = "https://github.com/NordSecurity/uniffi-bindgen-go.git"
# tag = "0.2.1+v0.25.0"
rev = "a77dc0462dc18d53846c758155ab4e0a42e5b240"
# tag = "0.2.2+v0.25.0"
rev = "ba23bab72f1a9bcc39ce81924d3d9265598e017c"
optional = true
[lints]