aba2sat/Cargo.toml

24 lines
560 B
TOML
Raw Normal View History

2023-11-04 20:57:43 +01:00
[package]
name = "aba2sat"
version = "0.1.0"
edition = "2021"
2023-11-16 19:11:55 +01:00
authors = ["Malte Tammena <malte.tammena@pm.me>"]
license = "GPL3"
2023-11-04 20:57:43 +01:00
default-run = "aba2sat"
2023-11-04 20:57:43 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-11-07 15:29:53 +01:00
cadical = "0.1.14"
2023-11-16 16:39:53 +01:00
clap = { version = "4.4.8", features = ["wrap_help", "derive"] }
2024-05-14 16:11:06 +02:00
fun_time = { version = "0.3.4", optional = true, features = ["log"] }
2024-04-18 22:19:51 +02:00
lazy_static = "1.4.0"
2024-05-14 16:11:06 +02:00
log = "0.4.21"
2023-11-12 19:43:44 +01:00
nom = "7.1.3"
2024-05-14 16:11:06 +02:00
pretty_env_logger = "0.5.0"
2023-11-13 17:23:57 +01:00
thiserror = "1.0.50"
2024-05-14 16:11:06 +02:00
[features]
timing = ["dep:fun_time"]