[dependencies.alloy-primitives]
version = "1.3"
[dependencies.cfg-if]
version = "1.0"
[dependencies.clap]
features = ["derive"]
version = "4.4"
[dependencies.mimalloc]
optional = true
version = "0.1"
[dependencies.solar-config]
default-features = false
features = ["clap"]
version = "=0.1.8"
[dependencies.solar-interface]
default-features = false
features = ["json"]
version = "=0.1.8"
[dependencies.solar-sema]
default-features = false
version = "=0.1.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-chrome]
optional = true
version = "0.7"
[dependencies.tracing-subscriber]
features = ["registry", "env-filter"]
optional = true
version = "0.3"
[dependencies.tracing-tracy]
features = ["demangle"]
optional = true
version = "0.11"
[features]
asm = ["alloy-primitives/asm-keccak", "solar-config/asm"]
default = ["mimalloc", "tracing"]
jemalloc = ["dep:tikv-jemallocator", "solar-config/jemalloc"]
mimalloc = ["dep:mimalloc", "solar-config/mimalloc"]
nightly = ["solar-config/nightly", "solar-interface/nightly", "solar-sema/nightly"]
tracing = ["dep:tracing-subscriber", "solar-config/tracing"]
tracing-chrome = ["tracing", "dep:tracing-chrome", "solar-config/tracing-chrome"]
tracing-off = ["tracing/release_max_level_off", "solar-config/tracing-off"]
tracy = ["tracing", "dep:tracing-tracy", "solar-config/tracy"]
tracy-allocator = ["tracing", "tracy", "solar-config/tracy-allocator"]
[lib]
name = "solar_cli"
path = "src/lib.rs"
[lints.clippy]
dbg-macro = "warn"
manual-string-new = "warn"
redundant-clone = "warn"
uninlined-format-args = "warn"
use-self = "warn"
[lints.rust]
redundant-lifetimes = "warn"
rust-2018-idioms = "warn"
unnameable-types = "warn"
unreachable-pub = "warn"
unused-crate-dependencies = "warn"
unused-must-use = "warn"
[lints.rustdoc]
all = "warn"
[package]
authors = ["DaniPopes <57450786+DaniPopes@users.noreply.github.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["compilers", "cryptography", "cryptography::cryptocurrencies"]
description = "Solar compiler CLI definitions, utils, and driver"
edition = "2024"
homepage = "https://github.com/paradigmxyz/solar/tree/main/crates/cli"
keywords = ["ethereum", "solidity", "solc", "crypto", "compiler"]
license = "MIT OR Apache-2.0"
name = "solar-cli"
readme = "README.md"
repository = "https://github.com/paradigmxyz/solar"
resolver = "2"
rust-version = "1.88"
version = "0.1.8"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(unix)".dependencies.tikv-jemallocator]
optional = true
version = "0.6"