[package]
edition = "2024"
name = "xod"
version = "1.0.1"
authors = ["Annie Ehler <annie.ehler.4@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A tiny REPL for bitwise arithmetic and expression evaluation."
documentation = "https://github.com/annie444/xod"
readme = "README.md"
keywords = [
"repl",
"bitwise",
"arithmetic",
"cli",
]
categories = [
"command-line-utilities",
"compilers",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/annie444/xod"
[lib]
name = "xod"
path = "src/lib.rs"
[[bin]]
name = "xod"
path = "src/main.rs"
[dependencies.clap]
version = "4.5.39"
features = ["derive"]
[dependencies.color-print]
version = "0.3.7"
features = ["terminfo"]
[dependencies.nom]
version = "8.0.0"
[dependencies.nom_locate]
version = "5.0.0"
features = ["runtime-dispatch-simd"]
[dependencies.prettytable-rs]
version = "0.10.0"
[dependencies.rustyline]
version = "16.0.0"
features = [
"case_insensitive_history_search",
"with-fuzzy",
"custom-bindings",
"derive",
]
[dependencies.shellexpand]
version = "3.1.1"
[dependencies.thiserror]
version = "2.0.12"
[profile.dev]
opt-level = 3
debug = 2
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true