aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Grois <andi@grois.info>2022-11-01 11:22:06 +0100
committerAndreas Grois <andi@grois.info>2022-11-01 11:22:06 +0100
commit98de8b63375d168fac56263fd944c30f4bbd193a (patch)
treeec6d0fb539b119acc941ea91ae33e020d4662185
parent978b30103754de1b8aa81164e9898a97f359211c (diff)
Switch to Crates.io version of passwordmaker-rs
-rw-r--r--rust/Cargo.lock3
-rw-r--r--rust/Cargo.toml2
2 files changed, 3 insertions, 2 deletions
diff --git a/rust/Cargo.lock b/rust/Cargo.lock
index e742a68..2fc4a20 100644
--- a/rust/Cargo.lock
+++ b/rust/Cargo.lock
@@ -240,7 +240,8 @@ dependencies = [
[[package]]
name = "passwordmaker-rs"
version = "0.1.0"
-source = "git+https://github.com/soulsource/passwordmaker-rs.git?branch=main#ea6789e5b33540270f5de3edb54264e6892fad73"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ff3d133eeb9874b7b21cf1c8fea98176bca24ff43393e853a8aa8c97dd071f36"
dependencies = [
"unicode-segmentation",
]
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
index dbfee90..6762ff2 100644
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
@@ -12,7 +12,7 @@ unicode-segmentation = "1.10.0"
mockall_double = "0.2"
ripemd = {version = "0.1.3", features = ["std"] }
passwordmaker_macros = { path = "../rust_macro" }
-passwordmaker-rs = { git = "https://github.com/soulsource/passwordmaker-rs.git", branch="main" }
+passwordmaker-rs = { version = "0.1" }
# Need to pin proc-macro2 to version 1.0.43. Newer versions are incompatible with Rust 1.52
proc-macro2 = "=1.0.43"