blob: 2ac422093b93517182192b6ea571fadf7fedf00f (
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
|
[package]
name = "authzd"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "authzd"
path = "src/main.rs"
[lib]
name = "authzd"
path = "src/lib.rs"
[dependencies]
cedar-policy = "4.4.1"
envoy-types = "0.6.0"
log = "0.4.27"
please = { git = "https://github.com/xlgmokha/please.git", version = "0.1.0" }
tokio = { version = "1.0.0", features = ["macros", "rt-multi-thread"] }
tonic = "0.13.1"
tonic-health = "0.13.1"
tonic-reflection = "0.13.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json"] }
[dev-dependencies]
tokio-test = "0.4.0"
tonic-build = "0.10.0"
|