[package]
edition = "2024"
rust-version = "1.95.0"
name = "choreo-content"
version = "0.2.3"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agentic coding assistant — daemon, TUI, and bridges"
homepage = "https://choreographr.com"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/choreographr/choreographr"
[lib]
name = "choreo_content"
path = "src/lib.rs"
[[test]]
name = "it"
path = "tests/it/main.rs"
[dependencies.bs58]
version = "0.5"
[dependencies.hex]
version = "0.4"
[dependencies.image]
version = "0.25"
features = [
"bmp",
"dds",
"exr",
"ff",
"gif",
"hdr",
"ico",
"jpeg",
"png",
"pnm",
"qoi",
"tga",
"tiff",
"webp",
"rayon",
]
default-features = false
[dependencies.parity-scale-codec]
version = "3"
[dependencies.prost]
version = "0.14"
[dependencies.rand]
version = "0.10"
[dependencies.schemars]
version = "1.2.2"
features = ["derive"]
[dependencies.schnorrkel]
version = "0.11"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.sp-core]
version = "43.0.0"
features = ["std"]
[dependencies.sp-crypto-hashing]
version = "0.1"
[dependencies.subxt]
version = "0.50"
features = [
"native",
"jsonrpsee",
"runtime",
]
default-features = false
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"net",
"time",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tungstenite]
version = "0.30"
features = ["handshake"]
default-features = false
[dependencies.ureq]
version = "3"
features = [
"json",
"brotli",
"multipart",
]
[dependencies.zeroize]
version = "1"
features = ["derive"]
[dev-dependencies.choreo-keystore]
version = "0.2"
[lints.clippy]
exit = "deny"
expect_used = "deny"
indexing_slicing = "deny"
match_same_arms = "allow"
panic = "deny"
panic_in_result_fn = "deny"
similar_names = "allow"
string_slice = "deny"
struct_excessive_bools = "allow"
struct_field_names = "allow"
todo = "deny"
too_many_lines = "allow"
unchecked_time_subtraction = "deny"
unimplemented = "deny"
unreachable = "deny"
unwrap_used = "deny"
[lints.clippy.pedantic]
level = "deny"
priority = -1