[package]
edition = "2021"
name = "shared-context-engineering"
version = "0.3.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.13"
[dependencies.inquire]
version = "0.9"
[dependencies.jsonschema]
version = "0.46"
[dependencies.keyring-core]
version = "1"
[dependencies.murmur3]
version = "0.5.2"
[dependencies.owo-colors]
version = "4"
features = ["supports-colors"]
[dependencies.rand]
version = "0.8"
features = [
"std",
"std_rng",
]
default-features = false
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"form",
"rustls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.tokio]
version = "1"
features = [
"rt",
"io-util",
"time",
]
default-features = false
[dependencies.tracing]
version = "0.1"
[dependencies.turso]
version = "0.7.0-pre.10"
[dependencies.uuid]
version = "1"
features = [
"v4",
"v7",
]
[build-dependencies.sha2]
version = "0.11"
[target.'cfg(any(target_os = "linux", target_os = "freebsd"))'.dependencies.zbus-secret-service-keyring-store]
version = "1.0.0"
features = ["rt-tokio-crypto-rust"]
[target.'cfg(target_os = "macos")'.dependencies.apple-native-keyring-store]
version = "1"
features = ["keychain"]
[target.'cfg(target_os = "windows")'.dependencies.windows-native-keyring-store]
version = "1"
[lints.clippy.all]
level = "deny"
priority = 0
[lints.clippy.pedantic]
level = "deny"
priority = 0
[lints.rust]
warnings = "deny"