-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
39 lines (33 loc) · 1.12 KB
/
Cargo.toml
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
[package]
name = "cedar-drt"
edition = "2021"
version = "4.0.0"
publish = false
[dependencies]
env_logger = "0.10"
log = "0.4"
libfuzzer-sys = "0.4"
cedar-policy = { path = "../cedar/cedar-policy", version = "4.*" }
cedar-policy-core = { path = "../cedar/cedar-policy-core", version = "4.*", features = ["arbitrary", "protobufs", "datetime"] }
cedar-policy-validator = { path = "../cedar/cedar-policy-validator", version = "4.*", features = ["arbitrary", "protobufs", "datetime"] }
cedar-policy-formatter = { path = "../cedar/cedar-policy-formatter", version = "4.*" }
cedar-testing = { path = "../cedar/cedar-testing", version = "4.*" }
lean-sys = { version = "0.0.7", features = ["small_allocator"], default-features = false }
miette = "7.1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
lazy_static = "1.4"
smol_str = { version = "0.3", features = ["serde"] }
prost = "0.13"
[build-dependencies]
prost-build = "0.13"
[features]
integration-testing = []
[dev-dependencies]
walkdir = "2.4"
statrs = "0.16"
[dependencies.uuid]
version = "1.3.1"
features = ["v4", "fast-rng"]
[profile.release]
overflow-checks = true