solar-cli 0.1.0

Solar compiler CLI definitions, utils, and driver
Documentation
[build-dependencies.vergen]
features = ["build", "git", "gitcl", "cargo"]
version = "8.3"

[dependencies.alloy-primitives]
version = "0.8"

[dependencies.cfg-if]
version = "1.0"

[dependencies.clap]
features = ["derive"]
version = "4.4"

[dependencies.const_format]
features = ["rust_1_64"]
version = "0.2"

[dependencies.rayon]
version = "1.8"

[dependencies.solar-config]
features = ["clap"]
version = "0.1.0"

[dependencies.solar-interface]
features = ["json"]
version = "0.1.0"

[dependencies.solar-sema]
version = "0.1.0"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-chrome]
optional = true
version = "0.7"

[dependencies.tracing-subscriber]
features = ["registry", "env-filter"]
version = "0.3"

[dependencies.tracing-tracy]
features = ["demangle"]
optional = true
version = "0.11"

[features]
asm = ["alloy-primitives/asm-keccak"]
default = ["jemalloc"]
jemalloc = ["dep:tikv-jemallocator"]
nightly = ["solar-config/nightly", "solar-interface/nightly", "solar-sema/nightly"]
tracing-chrome = ["dep:tracing-chrome"]
tracing-off = ["tracing/release_max_level_off"]
tracy = ["dep:tracing-tracy"]
tracy-allocator = ["tracy"]

[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 = "build.rs"
categories = ["compilers", "cryptography", "cryptography::cryptocurrencies"]
description = "Solar compiler CLI definitions, utils, and driver"
edition = "2021"
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"
rust-version = "1.82"
version = "0.1.0"

[target."cfg(unix)".dependencies.libc]
version = "0.2"

[target."cfg(unix)".dependencies.tikv-jemallocator]
optional = true
version = "0.6"