diff --git a/Cargo.lock b/Cargo.lock index 35958ba..c39212e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -680,8 +680,9 @@ dependencies = [ [[package]] name = "mmap-append" -version = "0.1.0" -source = "git+https://github.com/mikedilger/mmap-append?rev=0d20e193e7f13a442865a4a40a5da9a120e87411#0d20e193e7f13a442865a4a40a5da9a120e87411" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df2ef74bd4eba425972bd31da530dbe0c0e62d15f7c06e1c6ebcc3b6d5446237" dependencies = [ "libc", "memmap2", diff --git a/chorus-lib/Cargo.toml b/chorus-lib/Cargo.toml index bdb4790..dad55d5 100644 --- a/chorus-lib/Cargo.toml +++ b/chorus-lib/Cargo.toml @@ -13,7 +13,7 @@ heed = { git = "https://github.com/meilisearch/heed", rev = "64fd6fec293c0dee948 hyper = { version = "0.14", features = [ "http1", "server", "runtime", "stream" ] } hyper-tungstenite = "0.11" log = "0.4" -mmap-append = { git = "https://github.com/mikedilger/mmap-append", rev = "0d20e193e7f13a442865a4a40a5da9a120e87411" } +mmap-append = "0.2" secp256k1 = { version = "0.28", features = [ "hashes", "global-context", "rand-std" ] } serde = { version = "1.0", features = ["derive"] } tokio = { version = "1", features = [ "full" ] }