From 8d6735d7e2edd1eb30b926ba244fe392a730be1a Mon Sep 17 00:00:00 2001 From: Aiden McClelland Date: Fri, 29 Nov 2024 12:11:02 -0700 Subject: [PATCH] use imbl-value from crates.io --- Cargo.lock | 5 +++-- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fa473ed..c8bdbe5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -686,8 +686,9 @@ dependencies = [ [[package]] name = "imbl-value" -version = "0.1.0" -source = "git+https://github.com/Start9Labs/imbl-value.git#3ce01b17ae5e756fc829ee5e3513a1b19b2a03fc" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17297b705cdce30ef7a47d47385ee11b2db958e810ab3775cc78e34bcdb3f709" dependencies = [ "imbl", "serde", diff --git a/Cargo.toml b/Cargo.toml index bc48b28..7a4dee7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ http = "1" http-body-util = "0.1" # hyper = { version = "1", features = ["server", "http1", "http2", "client"] } itertools = "0.12" -imbl-value = { git = "https://github.com/Start9Labs/imbl-value.git" } +imbl-value = "0.1.1" lazy_format = "2" lazy_static = "1.4" openssl = { version = "0.10", features = ["vendored"] }