reid-llvm/reid/Cargo.toml
2025-07-22 22:15:34 +03:00

19 lines
392 B
TOML

[package]
name = "reid"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["color"]
color = ["colored"]
[dependencies]
## Make it easier to generate errors
thiserror = "1.0.44"
reid-lib = { path = "../reid-llvm-lib", version = "0.1.0" }
colored = {version = "3.0.0", optional = true}