forked from pierresouchay/consul-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 811 Bytes
/
Cargo.toml
File metadata and controls
27 lines (23 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "consul2"
version = "0.4.3"
edition = "2024"
authors = ["Andrew Useckas <andrew.useckas@threat-x.com>", "Stu Small <stuart.small@threat-x.com>", "YoungKing <yanckin@gmail.com>", "Pierre Souchay <https://github.com/pierresouchay>", "Tomer Shalev <https://github.com/tomers>", "Daniel (dmilith) Dettlaff"]
description = "Rust client libray for Consul HTTP API"
documentation = "https://docs.rs/consul/"
repository = "https://github.com/pierresouchay/consul-rust"
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["consul", "discovery"]
[dependencies]
error-chain = "0.12"
serde = "1"
serde_derive = "1"
serde_json = "1.0"
reqwest = { version = "0.11", features = ["blocking", "json"] }
url = "2.5"
[dev-dependencies]
base64 = "0.13"
hostname = "0.3"
rand = "0.8.5"
rstest = "0.8.0"