summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 9c19c33d882396e6930258d19952a06855e195f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "authzd"
version = "0.1.0"
edition = "2024"

[[bin]]
name = "authzd-server"
path = "src/server.rs"

[[bin]]
name = "authzd-client"
path = "src/client.rs"

[dependencies]
envoy-types = "0.6.0"
prost = "0.13"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
tonic = "*"

[build-dependencies]
tonic-build = "*"