A fork of attic a self-hostable Nix Binary Cache server
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #163 from zhaofengli/nix-base32-0.2.0

Update nix-base32 crate

authored by

Zhaofeng Li and committed by
GitHub
894e1713 6d9aeaef

+5 -5
+3 -3
Cargo.lock
··· 258 258 "sha2", 259 259 "tempfile", 260 260 "tokio", 261 - "tokio-test", 262 261 "version-compare", 263 262 "wildmatch", 264 263 "xdg", ··· 2779 2778 2780 2779 [[package]] 2781 2780 name = "nix-base32" 2782 - version = "0.1.2-alpha.0" 2783 - source = "git+https://github.com/zhaofengli/nix-base32.git?rev=b850c6e9273d1c39bd93abb704a53345f5be92eb#b850c6e9273d1c39bd93abb704a53345f5be92eb" 2781 + version = "0.2.0" 2782 + source = "registry+https://github.com/rust-lang/crates.io-index" 2783 + checksum = "d2628953ed836273ee4262e3708a8ef63ca38bd8a922070626eef7f9e5d8d536" 2784 2784 2785 2785 [[package]] 2786 2786 name = "nom"
+2 -2
attic/Cargo.toml
··· 16 16 hex = "0.4.3" 17 17 lazy_static = "1.4.0" 18 18 log = "0.4.18" 19 - nix-base32 = { git = "https://github.com/zhaofengli/nix-base32.git", rev = "b850c6e9273d1c39bd93abb704a53345f5be92eb" } 19 + nix-base32 = "0.2.0" 20 20 regex = "1.8.3" 21 21 serde = { version = "1.0.163", features = ["derive"] } 22 22 serde_yaml = "0.9.21" ··· 76 76 stream = ["tokio", "dep:async-stream"] 77 77 78 78 # Tokio runtime. 79 - tokio = ["dep:tokio", "tokio/rt"] 79 + tokio = ["dep:tokio", "tokio/rt", "tokio/time"] 80 80 81 81 [[bench]] 82 82 name = "chunking"