Use crates instead of local module
This commit is contained in:
parent
50ea5ee632
commit
4a265dd930
2 changed files with 5 additions and 3 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -874,7 +874,9 @@ checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mumble-rs"
|
name = "mumble-rs"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "d03b8f8c00cec8bd5203c7ad15dccad51ec12a101adfb664a28b4b4d2f9f3ac2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"bytes",
|
"bytes",
|
||||||
|
|
|
@ -15,6 +15,6 @@ tokio-rustls = { version = "0.26" }
|
||||||
webpki-roots = "0.26"
|
webpki-roots = "0.26"
|
||||||
rustls-pki-types = { version = "1.7.0" , features = ["alloc", "std"]}
|
rustls-pki-types = { version = "1.7.0" , features = ["alloc", "std"]}
|
||||||
futures = "0.3.30"
|
futures = "0.3.30"
|
||||||
mumble-rs = { path = "/home/dhalucario/workspace/mumble-rs" }
|
mumble-rs = { version = "0.1" }
|
||||||
teloxide = { version = "0.13", features = ["macros"] }
|
teloxide = { version = "0.13", features = ["macros"] }
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
|
|
Loading…
Reference in a new issue