[package]
edition = "2024"
rust-version = "1.95"
name = "ready-set-sdk"
version = "0.1.0-alpha.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared conventions and helpers for ready-set plugins."
homepage = "https://github.com/pulsearc-ai/ready-set"
documentation = "https://docs.rs/ready-set-sdk"
readme = "README.md"
keywords = [
"ready-set",
"cli",
"plugin",
"sdk",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/pulsearc-ai/ready-set"
[lib]
name = "ready_set_sdk"
path = "src/lib.rs"
[[example]]
name = "minimal_plugin"
path = "examples/minimal_plugin.rs"
[[test]]
name = "contract_smoke"
path = "tests/contract_smoke.rs"
[dependencies.directories]
version = "5"
[dependencies.getrandom]
version = "0.3"
features = ["std"]
[dependencies.is-terminal]
version = "0.4"
[dependencies.semver]
version = "1"
features = ["serde"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1"
[dependencies.time]
version = "0.3"
features = [
"formatting",
"parsing",
"macros",
"serde",
]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dependencies.which]
version = "6"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
cargo_common_metadata = "allow"
dbg_macro = "warn"
missing_errors_doc = "deny"
missing_panics_doc = "deny"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
panic = "warn"
todo = "warn"
unimplemented = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
let_underscore_drop = "warn"
missing_docs = "deny"
non_ascii_idents = "warn"
single_use_lifetimes = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unsafe_code = "forbid"
unused_extern_crates = "warn"
unused_import_braces = "warn"
unused_lifetimes = "warn"
unused_qualifications = "warn"
variant_size_differences = "warn"