[package]
edition = "2024"
rust-version = "1.96"
name = "earl-protocol-sql"
version = "0.6.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQL execution protocol for earl (sqlx)"
homepage = "https://github.com/mathematic-inc/earl"
documentation = "https://mathematic-inc.github.io/earl"
readme = false
keywords = [
"agent",
"database",
"sql",
"sqlx",
]
categories = ["database"]
license = "Apache-2.0"
repository = "https://github.com/mathematic-inc/earl"
[lib]
name = "earl_protocol_sql"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.earl-core]
version = "0.6.4"
[dependencies.rkyv]
version = "0.8"
features = [
"bytecheck",
"std",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlx]
version = "0.9"
features = [
"any",
"mysql",
"postgres",
"runtime-tokio",
"sqlite",
"tls-rustls",
]
[dependencies.tokio]
version = "1"
features = ["time"]