-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 793 Bytes
/
Cargo.toml
File metadata and controls
25 lines (23 loc) · 793 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
# SPDX-License-Identifier: PMPL-1.0-or-later
[package]
name = "phronesiser"
version = "0.1.0"
edition = "2024"
authors = ["Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>"]
description = "Add provably safe ethical constraints to AI agent decision-making via Phronesis"
license-file = "LICENSE"
repository = "https://github.com/hyperpolymath/phronesiser"
keywords = ["ethics", "deontic-logic", "ai-safety", "constraints", "formal-verification"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
toml = "0.8"
anyhow = "1"
thiserror = "2"
handlebars = "6"
walkdir = "2"
chrono = { version = "0.4", features = ["serde"] }
serde_json = "1"
[dev-dependencies]
tempfile = "3"