[package]
edition = "2021"
name = "shared-context-engineering"
version = "0.2.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared Context Engineering CLI"
homepage = "https://sce.crocoder.dev"
documentation = "https://sce.crocoder.dev/docs"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/crocoder-dev/shared-context-engineering"
[[bin]]
name = "sce"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.dirs]
version = "6"
[dependencies.hmac]
version = "0.12"
[dependencies.inquire]
version = "0.7"
[dependencies.jsonschema]
version = "0.33"
[dependencies.opentelemetry]
version = "0.28"
features = ["trace"]
[dependencies.opentelemetry-otlp]
version = "0.28"
features = [
"grpc-tonic",
"http-proto",
"trace",
]
[dependencies.opentelemetry_sdk]
version = "0.28"
features = ["rt-tokio"]
[dependencies.owo-colors]
version = "4"
features = ["supports-colors"]
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
version = "1"
features = [
"rt",
"io-util",
]
default-features = false
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-opentelemetry]
version = "0.29"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["registry"]
[build-dependencies.sha2]
version = "0.10"
[lints.clippy.all]
level = "deny"
priority = 0
[lints.clippy.pedantic]
level = "deny"
priority = 0
[lints.rust]
warnings = "deny"