diff --git a/Cargo.lock b/Cargo.lock index de3dde761..d5b992650 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1691,7 +1691,7 @@ dependencies = [ "clap", "futures-util", "matrix-sdk", - "qrcode 0.14.1 (git+https://github.com/kennytm/qrcode-rust/)", + "qrcode", "tokio", "tracing-subscriber", "url", @@ -3418,7 +3418,7 @@ version = "0.7.1" dependencies = [ "byteorder", "image", - "qrcode 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", + "qrcode", "ruma-common", "thiserror", "vodozemac", @@ -4532,14 +4532,6 @@ dependencies = [ "image", ] -[[package]] -name = "qrcode" -version = "0.14.1" -source = "git+https://github.com/kennytm/qrcode-rust/#e9373dea6a90fd4f39292b464f718649bbdb36a9" -dependencies = [ - "image", -] - [[package]] name = "quick-error" version = "1.2.3" diff --git a/examples/qr-login/Cargo.toml b/examples/qr-login/Cargo.toml index 2c1898d73..44f2d6be8 100644 --- a/examples/qr-login/Cargo.toml +++ b/examples/qr-login/Cargo.toml @@ -12,7 +12,7 @@ test = false anyhow = { workspace = true } tokio = { workspace = true, features = ["macros", "rt-multi-thread"] } clap = { version = "4.0.15", features = ["derive"] } -qrcode = { git = "https://github.com/kennytm/qrcode-rust/" } +qrcode = { version = "0.14.1" } futures-util = { workspace = true } tracing-subscriber = { workspace = true } url = "2.3.1"