aba2sat/Cargo.toml

21 lines
473 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-03-25 17:16:34 +01:00
graph-cycles = "0.1.0"
iter_tools = "0.10.0"
2024-04-18 22:19:51 +02:00
lazy_static = "1.4.0"
2023-11-12 19:43:44 +01:00
nom = "7.1.3"
2024-03-25 17:16:34 +01:00
petgraph = "0.6.4"
2023-11-13 17:23:57 +01:00
thiserror = "1.0.50"