-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (41 loc) · 1.11 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "tatam"
version = "0.3.11"
edition = "2021"
authors = ["David Doose <[email protected]>"]
license = "LGPL-3.0-only"
description = "Theory And Time Analysis Machine"
repository = "https://github.com/DavidD12/tatam"
readme = "README.md"
keywords = ["SMT", "BMC", "Temporal_Logic", "solver"]
# exclude = ["files/*"]
include = ["**/*.rs", "**/*.lalrpop", "Cargo.toml", "Readme_crates.md"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.tatam]
directories = ["vscode-extensions"]
[dependencies]
lalrpop-util = { version = "0.19.8", features = ["lexer"] }
regex = "1.6.0"
line-col = "0.2.1"
# z3 = "0.11.2"
clap = { version = "4.0.18", features = ["derive"] }
fraction = "0.13.0"
d-stu = "0.1.5"
termion = "2.0.1"
smt_sb-rs = "0.1.0"
threadpool = "1.8.1"
num_cpus = "1.16.0"
[build-dependencies]
lalrpop = { version = "0.19.8", features = ["lexer"] }
[lib]
name = "tatam"
path = "src/lib.rs"
[[bin]]
name = "tatam"
path = "bin/main.rs"
# [[bin]]
# name = "z3_test"
# path = "bin/z3_test.rs"
# [[bin]]
# name = "smt_test"
# path = "bin/smt_test.rs"