df-consul/Cargo.toml

21 lines
687 B
TOML
Raw Normal View History

2022-12-07 13:19:26 +00:00
[package]
name = "df-consul"
description = "Deuxfleurs' async Rust bindings for (a subset of) the Consul HTTP API"
authors = [ "Alex Auvolat <alex@adnab.me>" ]
2023-01-05 10:27:18 +00:00
version = "0.2.0"
2022-12-07 13:19:26 +00:00
edition = "2021"
2022-12-07 13:24:16 +00:00
license = "MIT"
repository = "https://git.deuxfleurs.fr/Deuxfleurs/df-consul"
2022-12-07 13:19:26 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.66"
serde = { version = "1.0.149", features = ["derive"] }
log = "0.4"
bytes = "1"
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls-manual-roots" ] }
2023-01-05 10:27:18 +00:00
[dev-dependencies]
tokio = { version = "1.22", features = ["rt", "rt-multi-thread", "macros"] }