agentsmith 0.1.1

AI Agent forging utilities.
Documentation
[package]
name = "agentsmith"
version = "0.1.1"
edition = "2024"
authors = ["CryptoPatrick <cryptopatrick@gmail.com>"]

###############################################################################
description = "AI Agent forging utilities."
documentation = "https://docs.rs/agentsmith"
homepage = "https://github.com/cryptopatrick/agentsmith"
repository = "https://github.com/cryptopatrick/agentsmith"
readme = "README.md"
keywords = ["AI", "Agentic", "Utilities"]
license = "MIT"
autotests = false

###############################################################################
[lib]
name = "agentsmith"
path = "src/lib.rs"

[[test]]
name = "tests"
path = "tests/test.rs"

###############################################################################
[dependencies]
rig-core = "0.2.1"
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "sqlite", "chrono", "json", "uuid"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.8", features = ["v4"] }
tracing = "0.1"
anyhow = "1.0"
thiserror = "2.0"

[dev-dependencies]
tempfile = "3.0"