Use crates instead of local module

This commit is contained in:
Leon Grünewald 2024-09-17 02:42:08 +02:00
parent 50ea5ee632
commit 4a265dd930
2 changed files with 5 additions and 3 deletions

4
Cargo.lock generated
View file

@ -874,7 +874,9 @@ checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
[[package]]
name = "mumble-rs"
version = "0.1.0"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d03b8f8c00cec8bd5203c7ad15dccad51ec12a101adfb664a28b4b4d2f9f3ac2"
dependencies = [
"anyhow",
"bytes",

View file

@ -15,6 +15,6 @@ tokio-rustls = { version = "0.26" }
webpki-roots = "0.26"
rustls-pki-types = { version = "1.7.0" , features = ["alloc", "std"]}
futures = "0.3.30"
mumble-rs = { path = "/home/dhalucario/workspace/mumble-rs" }
mumble-rs = { version = "0.1" }
teloxide = { version = "0.13", features = ["macros"] }
serde = { version = "1.0", features = ["derive"] }