[package]
edition = "2024"
rust-version = "1.95"
name = "ready-set-rust"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust capability provider plugin for ready-set."
homepage = "https://github.com/pulsearc-ai/ReadySet"
documentation = "https://docs.rs/ready-set-rust"
readme = "README.md"
keywords = [
"ready-set",
"rust",
"plugin",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/pulsearc-ai/ReadySet"
[lib]
name = "ready_set_rust"
path = "src/lib.rs"
[[bin]]
name = "ready-set-rust"
path = "src/main.rs"
[[test]]
name = "rust_provider_e2e"
path = "tests/rust_provider_e2e.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.ready-set-sdk]
version = "0.1.0"
[dependencies.semver]
version = "1"
features = ["serde"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.time]
version = "0.3"
features = [
"formatting",
"parsing",
"macros",
"serde",
]
[dependencies.toml]
version = "0.8"
[dependencies.toml_edit]
version = "0.22"
[dependencies.walkdir]
version = "2"
[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"