-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (41 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
50 lines (41 loc) · 1.08 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "ans-client"
description = "ANS API client for agent registration and management"
keywords = ["ans", "client", "agent-name-service", "api"]
categories = ["api-bindings"]
version = "0.1.2"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
readme = "README.md"
[lints]
workspace = true
[dependencies]
# Internal crates
ans-types = { workspace = true }
# Async runtime
tokio = { workspace = true }
# HTTP client
reqwest = { workspace = true }
# Serialization
serde = { workspace = true }
serde_json = { workspace = true }
# Error handling
thiserror = { workspace = true }
# Secret management
secrecy = { workspace = true }
# Utilities
chrono = { workspace = true }
url = { workspace = true }
urlencoding = { workspace = true }
uuid = { workspace = true }
tracing = { workspace = true }
[dev-dependencies]
tokio-test = { workspace = true }
wiremock = { workspace = true }
rstest = { workspace = true }
test-log = { workspace = true }
tracing-subscriber = { workspace = true }
rand = { workspace = true }