[package]
edition = "2024"
name = "rue-cli"
version = "0.8.3"
authors = ["Brandon Haggstrom <me@rigidnetwork.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A CLI tool for invoking the Rue compiler."
homepage = "https://github.com/xch-dev/rue"
readme = "README.md"
keywords = [
"chia",
"blockchain",
"crypto",
]
categories = [
"cryptography::cryptocurrencies",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/xch-dev/rue"
[[bin]]
name = "rue"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.98"
[dependencies.chialisp]
version = "0.4.1"
[dependencies.clap]
version = "4.5.45"
features = ["derive"]
[dependencies.clvm-utils]
version = "0.28.1"
[dependencies.clvmr]
version = "0.16.0"
[dependencies.colored]
version = "3.0.0"
[dependencies.hex]
version = "0.4.3"
[dependencies.rue-compiler]
version = "0.8.3"
[dependencies.rue-diagnostic]
version = "0.8.3"
[dependencies.rue-lir]
version = "0.8.3"
[dependencies.rue-options]
version = "0.8.3"
[dependencies.toml]
version = "0.9.8"
[lints.clippy]
case_sensitive_file_extension_comparisons = "allow"
cast_possible_truncation = "allow"
implicit_hasher = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
needless_raw_string_hashes = "allow"
similar_names = "allow"
too_many_lines = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
dead_code = "warn"
deprecated = "deny"
deprecated_in_future = "deny"
missing_copy_implementations = "warn"
missing_debug_implementations = "warn"
non_ascii_idents = "deny"
trivial_casts = "deny"
trivial_numeric_casts = "deny"
unreachable_code = "warn"
unreachable_patterns = "deny"
unsafe_code = "deny"
unused_extern_crates = "deny"
[lints.rust.future_incompatible]
level = "deny"
priority = -1
[lints.rust.nonstandard_style]
level = "deny"
priority = -1
[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1
[lints.rust.rust_2021_compatibility]
level = "deny"
priority = -1