forked from microsoft/agent-governance-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 743 Bytes
/
Cargo.toml
File metadata and controls
24 lines (22 loc) · 743 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
[package]
name = "agentmesh"
version = "3.0.2"
edition = "2021"
description = "Public Preview — Rust SDK for the AgentMesh governance framework (policy, trust, audit, identity)"
license = "MIT"
repository = "https://github.com/microsoft/agent-governance-toolkit"
documentation = "https://docs.rs/agentmesh"
readme = "README.md"
keywords = ["agent", "governance", "trust", "policy", "audit"]
categories = ["authentication", "cryptography"]
rust-version = "1.70"
[dependencies]
serde = { version = "=1.0.228", features = ["derive"] }
serde_json = "=1.0.149"
serde_yaml = "=0.9.34"
sha2 = "=0.10.9"
ed25519-dalek = { version = "=2.2.0", features = ["rand_core"] }
rand = "=0.8.5"
thiserror = "=2.0.18"
[dev-dependencies]
tempfile = "=3.27.0"