-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (33 loc) · 1.02 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
[package]
name = "deduct"
authors = ["Colonial"]
version = "1.0.4"
edition = "2021"
description = "A Fitch-style natural deduction proof checker, with support for modal logic."
repository = "https://github.com/Colonial-Dev/deduct"
readme = "README.md"
license = "AGPL-3.0"
[profile.release]
lto = true
codegen-units = 1
strip = true
[profile.dev.package."*"]
opt-level = 2
[dependencies]
# GUI
egui = { version = "0.27.2", features = ["accesskit"] }
eframe = { version = "0.27.2", features = [
"wgpu", # Use the WGPU rendering backend.
"persistence", # Enable restoring app state when restarting the app.
] }
image = { version = "0.24", default-features = false, features = ["png"] }
# Errors
thiserror = "1.0.58"
# Parsing
once_cell = "1.19.0"
regex = "1.10.3"
serde = { version = "1.0.197", features = ["derive"] }
egui_extras = { version = "0.27.2", features = ["all_loaders"] }
# Addl. WASM dependencies
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4"