Skip to content

Commit 31407a6

Browse files
Forgor the .toml
1 parent 0b4e6fc commit 31407a6

1 file changed

Lines changed: 37 additions & 0 deletions

File tree

Cargo.toml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[package]
2+
name = "decretum"
3+
version = "0.1.0"
4+
edition = "2024"
5+
6+
[features]
7+
default = ["compiler-op"]
8+
compiler-op = []
9+
10+
[dependencies]
11+
clap = { version = "4.5.38", features = ["derive"] }
12+
eframe = "0.34.1"
13+
egui_commonmark = "0.23.0"
14+
egui_extras = { version = "0.34.1", features = ["syntect"] }
15+
html2md = "0.2.15"
16+
image = { version = "0.25", default-features = false, features = ["png", "ico"] }
17+
rfd = "0.15"
18+
19+
20+
[[bin]]
21+
name = "ide"
22+
path = "src/bin/ide.rs"
23+
24+
[[bin]]
25+
name = "decretum"
26+
path = "src/main.rs"
27+
28+
[[bin]]
29+
name = "dcrt_rt"
30+
path = "src/bin/dcrt_rt.rs"
31+
32+
[profile.release]
33+
opt-level = "z"
34+
lto = true
35+
codegen-units = 1
36+
panic = "abort"
37+
strip = true

0 commit comments

Comments
 (0)