diff options
author | Alex Auvolat <alex@adnab.me> | 2022-12-07 14:28:29 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-12-07 14:28:29 +0100 |
commit | fad172e54af7a4d043410fe6cdc1f8b6112e9c0f (patch) | |
tree | e2b4a63a43d19161fb36b625e6e24af37e1f709b /Cargo.lock | |
parent | 752593e2747f64a8f14de3484ab085ed5f65cd40 (diff) | |
download | tricot-fad172e54af7a4d043410fe6cdc1f8b6112e9c0f.tar.gz tricot-fad172e54af7a4d043410fe6cdc1f8b6112e9c0f.zip |
Externalise Consul module to df-consul crate
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -396,6 +396,19 @@ dependencies = [ ] [[package]] +name = "df-consul" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ec5111d5daddfbab491780564dc8270c29c90553fab98d677489600a8623c76" +dependencies = [ + "anyhow", + "bytes", + "log", + "reqwest", + "serde", +] + +[[package]] name = "dhat" version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1945,6 +1958,7 @@ dependencies = [ "async-compression", "bytes", "chrono", + "df-consul", "dhat", "envy", "futures", |