blob: 8ae68ab6e92702d45119a4d7973c930c45ce2020 (
plain)
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
|
[package]
name = "authzd"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "authzd"
path = "src/bin/cli.rs"
[lib]
name = "authzd"
path = "src/lib.rs"
[dependencies]
clap = { version = "4.5", features = ["derive", "env"] }
envoy-types = "0.6.0"
log = "0.4.27"
please = { git = "https://github.com/xlgmokha/please.git", version = "0.1.0" }
prost = "0.13"
prost-types = "0.13"
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0.0", features = ["macros", "rt-multi-thread"] }
tonic = "0.13"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json"] }
urlencoding = "2.1"
[dev-dependencies]
tokio-stream = "0.1"
tokio-test = "0.4.0"
tonic-build = "0.13"
[build-dependencies]
prost-build = "0.13.5"
tonic-build = "0.13"
|