-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
93 lines (85 loc) · 2.27 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[profile.release]
lto = "thin"
[profile.bench]
debug = "line-tables-only"
[workspace]
resolver = "2"
members = [
"crates/*",
"crates/**/benchmarks",
"tools/*",
"tools/**/benchmarks",
"tools/**/library"
]
[workspace.package]
authors = ["Maurice Laveaux"]
edition = "2021"
license = "BSL-1.0"
repository = "https://github.com/mlaveaux/mCRL2-rust.git"
rust-version = "1.80.1"
version = "0.1.0"
[workspace.dependencies]
ahash = "0.8"
anyhow = { version = "1.0", features = ["backtrace"] }
bitstream-io = "2.6"
bumpalo = "3.17"
cargo-emit = "0.2"
cc = "1.2"
clap = { version = "4.5", features = ["derive"] }
criterion = { version = "0.5", features = ["html_reports"] }
crossbeam-utils = "0.8"
cxx = "1.0"
cxx-build = { version = "1.0", features = ["parallel"] }
env_logger = { version = "0.11", features = ["unstable-kv"] }
html-escape = "0.2"
indoc = "2.0"
itertools = "0.14"
log = { version = "0.4", features = ["kv"] }
parking_lot = "0.12"
pest = "2.7"
pest_consume = "1.1"
pest_derive = "2.7"
proc-macro2 = "1.0"
quote = "1.0"
rand = "0.9"
regex = "1.11"
rustc-hash = "2.1"
smallvec = "1.13"
streaming-iterator = "0.1"
syn = { version = "2.0", features = ["full", "extra-traits"] }
test-case = "3.3"
test-log = "0.2"
thiserror = "2.0"
tikv-jemallocator = "0.6"
trybuild = "1.0"
# Used for GUI tools
cosmic-text = "0.12"
rfd = { version = "0.15", default-features = false, features = ["xdg-portal", "tokio"] }
slint = "1.9"
tiny-skia = "0.11"
tokio = { version = "1.41", features = ["rt", "macros"] }
winapi = "0.3"
glam = "0.29"
# Only used for xtask
duct = "0.13"
fs_extra = "1.3"
glob = "0.3"
human-sort = "0.2"
which = "7.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
strum = { version = "0.26", features = ["derive"] }
# Build dependencies
slint-build = "1.9"
# The workspace libraries.
mcrl2 = { path = "crates/mcrl2" }
mcrl2-macros = { path = "crates/mcrl2-macros" }
mcrl2-sys = { path = "crates/mcrl2-sys" }
mcrl2rust-gui = { path = "crates/gui" }
mcrl2rust-io = { path = "crates/io" }
mcrl2rust-lts = { path = "crates/lts" }
mcrl2rust-reduction = { path = "crates/reduction" }
mcrl2rust-sabre = { path = "crates/sabre" }
mcrl2rust-unsafety = { path = "crates/unsafety" }
mcrl2rust-utilities = { path = "crates/utilities" }
rec-tests = { path = "crates/rec-tests" }