[package]
edition = "2024"
name = "ora-cli"
version = "1.0.0-rc.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command line interface for the Ora scheduler."
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/tamasfe/ora/tree/master"
resolver = "2"
[[bin]]
name = "ora"
path = "src/main.rs"
[dependencies.clap]
version = "4.5.56"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5.65"
features = ["unstable-dynamic"]
[dependencies.comfy-table]
version = "7.2.2"
[dependencies.cronexpr]
version = "1.4.0"
[dependencies.eyre]
version = "0.6.12"
[dependencies.futures]
version = "0.3.31"
[dependencies.humantime]
version = "2.3.0"
[dependencies.jiff]
version = "0.2.18"
[dependencies.jsonschema]
version = "0.41.0"
[dependencies.ora]
version = "1.0.0-rc.1"
[dependencies.serde_json]
version = "1.0.149"
[dependencies.tempfile]
version = "3.24.0"
[dependencies.tokio]
version = "1.49.0"
features = [
"macros",
"rt",
]
[dependencies.tonic]
version = "0.14.3"
[dependencies.tracing]
version = "0.1.41"
[dependencies.tracing-subscriber]
version = "0.3.22"
features = ["env-filter"]
[lints.clippy]
default_trait_access = "allow"
empty_docs = "allow"
ignored_unit_patterns = "allow"
map_unwrap_or = "allow"
match_wildcard_for_single_variants = "allow"
missing_errors_doc = "allow"
module_name_repetitions = "allow"
needless_pass_by_value = "allow"
needless_raw_string_hashes = "allow"
no_effect_underscore_binding = "allow"
ref_option_ref = "allow"
should_panic_without_expect = "allow"
similar_names = "allow"
single_match = "allow"
single_match_else = "allow"
struct_excessive_bools = "allow"
struct_field_names = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
type_repetition_in_bounds = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"