-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (37 loc) · 703 Bytes
/
Cargo.toml
File metadata and controls
40 lines (37 loc) · 703 Bytes
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
[workspace]
members = [
"core",
"bindings/python",
"bindings/node",
"bindings/wasm"
]
resolver = "2"
[workspace.package]
version = "0.7.8"
edition = "2021"
license = "Apache-2.0"
authors = ["Amit Saxena"]
repository = "https://github.com/getactra/actra"
description = "Deterministic admission control engine for state-changing operations in automated systems."
keywords = [
"policy",
"authorization",
"policy-engine",
"agent",
"deterministic"
]
categories = [
"config",
"api-bindings",
"development-tools",
]
readme = "README.md"
exclude = [
".github/*",
]
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
strip = true
panic = "unwind"