calcli 0.4.0

Fast terminal calculator (TUI) with history, variables and engineering helpers
Documentation
# cargo-deny configuration - run locally with `cargo deny check`.
# https://crates.io/crates/cargo-deny

[advisories]
# Fail on any security advisory from the RustSec database.
version = 2
ignore = []

[licenses]
# Only permit OSI-approved, MIT-compatible licenses.
version = 2
confidence-threshold = 0.8
allow = [
    "MIT",
    "Apache-2.0",
    "Apache-2.0 WITH LLVM-exception",
    "BSD-2-Clause",
    "BSD-3-Clause",
    "ISC",
    "Unicode-3.0",
    "Unicode-DFS-2016",
    "Zlib",
    "MPL-2.0",
    "CC0-1.0",
]

[bans]
# Duplicate versions are a warning, not an error, for a leaf binary.
multiple-versions = "warn"
wildcards = "allow"

[sources]
# Every dependency must come from crates.io.
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]