-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 816 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 816 Bytes
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
[package]
name = "yagbas"
description = "Yagbas is a programming language that builds programs for the Game Boy."
repository = "https://github.com/Lokathor/yagbas"
homepage = "https://lokathor.github.io/yagbas/"
version = "0.2.0"
edition = "2024"
license = "Zlib OR Apache-2.0 OR MIT"
[profile.dev.package."*"]
opt-level = 3
[profile.release]
codegen-units = 1
lto = true
[dependencies]
ariadne = "0.6.0"
bimap = "0.6.3"
chumsky = { version = "0.12", features = ["pratt"] }
clap = { version = "4.5.47", features = ["derive"] }
derive_more = { version = "2.0.1", features = ["display"] }
fnv = "1.0.7"
internal_iterator_rec = "0.1.1"
logos = { version = "0.15.1", features = ["forbid_unsafe"] }
rayon = { version = "1.11.0", optional = true }
str_id = "0.1.1"
[features]
default = ["rayon"]
rayon = ["dep:rayon"]