From 5fb6835b3ea05a6275230ce60f922dfb3c97194a Mon Sep 17 00:00:00 2001 From: Martin Hoffmann Date: Tue, 25 Jun 2024 10:27:52 +0200 Subject: [PATCH] Switch to released rpki-rs. --- Cargo.lock | 3 ++- Cargo.toml | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6b9109a1f..a6f1c08dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2096,7 +2096,8 @@ dependencies = [ [[package]] name = "rpki" version = "0.18.4" -source = "git+https://github.com/nLnetLabs/rpki-rs#e5255a94e9c763ef692de5ec37cdaa54678a7da2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c619005c452f0e0d8895334e21c846158cf2591d1db0a948ab0610d70d16828" dependencies = [ "base64 0.22.1", "bcder", diff --git a/Cargo.toml b/Cargo.toml index 82dbb40bd..5d872f817 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,8 +51,7 @@ rand = "0.8" regex = { version = "1.5.5", optional = true, default_features = false, features = [ "std" ] } reqwest = { version = "0.12.5", features = ["json"] } rpassword = { version = "7.3.1", optional = true } -#rpki = { version = "0.18.0", features = ["ca", "compat", "rrdp"] } -rpki = { git = "https://github.com/nLnetLabs/rpki-rs", features = [ "ca", "compat", "rrdp" ] } +rpki = { version = "0.18.4", features = ["ca", "compat", "rrdp"] } rustls-pemfile = "2.1.2" scrypt = { version = "0.11", optional = true, default-features = false } secrecy = { version = "0.8", features = ["serde"] }