-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
45 lines (38 loc) · 945 Bytes
/
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
[package]
name = "logicrs"
version = "0.1.3"
edition = "2021"
description = "An easy-to-use simulator for logical circuits"
readme = "./README.md"
repository = "https://github.com/spydr06/logicrs"
license = "MIT"
authors = [
"Spydr06",
"sparshg",
"VoidVampire",
"taeh98",
"toadkarter",
"virejdasani"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
glib-build-tools = "0.16.3"
[dependencies.adw]
package = "libadwaita"
version = "0.2.1"
features = ["v1_2"]
[dependencies.gtk]
package = "gtk4"
version = "0.5.4"
[dependencies]
serde_json = "1.0"
serde = {version = "1.0.188", features = ["derive"]}
log = "0.4.0"
env_logger = "0.9.0"
lazy_static = "1.4.0"
[dependencies.uuid]
version = "1.3.0"
features = ["v4", "fast-rng", "serde", "macro-diagnostics"]
[profile.release]
strip = true # Automatically strip symbols from the binary.
lto = true