[package]
edition = "2024"
name = "elicit_csv"
version = "0.11.1"
authors = ["Erik Rose <erik.w.rose@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Elicitation shadow crate for the csv reader/writer library — MCP tools for CSV parsing and writing"
homepage = "https://github.com/crumplecup/elicitation"
documentation = "https://docs.rs/elicitation"
readme = "README.md"
keywords = [
"mcp",
"csv",
"parsing",
"elicitation",
"agent",
]
categories = [
"parser-implementations",
"development-tools",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/crumplecup/elicitation"
resolver = "2"
[features]
api = []
[lib]
name = "elicit_csv"
path = "src/lib.rs"
[[test]]
name = "workflow_test"
path = "tests/workflow_test.rs"
[dependencies.csv]
version = "1.4"
[dependencies.derive_more]
version = "2"
features = [
"display",
"error",
"from",
"deref",
"deref_mut",
"as_ref",
]
[dependencies.elicitation]
version = "0.11.1"
features = [
"csv-types",
"emit",
]
[dependencies.elicitation_derive]
version = "0.11.1"
[dependencies.futures]
version = "0.3"
[dependencies.inventory]
version = "0.3"
[dependencies.rmcp]
version = "1.7"
features = [
"client",
"transport-io",
"schemars",
"elicitation",
]
[dependencies.schemars]
version = "1"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
"v4",
]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"io-std",
"io-util",
"time",
"sync",
"rt",
"fs",
"net",
"process",
"signal",
"macros",
"rt",
]
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(kani)",
"cfg(creusot)",
"cfg(prusti)",
"cfg(verus)",
'cfg(feature, values("emit"))',
]