-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
49 lines (43 loc) · 1.12 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
[package]
name = "atlas_77"
version = "0.5.2"
edition = "2021"
description = "Programming language with strong interoperability with Rust (WIP)"
authors = ["Gipson62", "ElhamAryanpur"]
license = "MIT"
repository = "https://github.com/atlas77-lang/Atlas77"
keywords = ["programming", "language", "compiler", "atlas77"]
categories = ["compilers"]
homepage = "https://atlas77-lang.github.io/Atlas77/docs/latest/index.html"
readme = "README.md"
[profile.release]
#opt-level = 3
panic = "abort"
lto = true
codegen-units = 1
overflow-checks = false
debug-assertions = false
strip = "debuginfo"
[profile.release.package."*"]
opt-level = 3
codegen-units = 1
[lib]
doctest = false
[[bin]]
name = "atlas_77"
path = "src/main.rs"
[dependencies]
# For the CLI
clap = { version = "4.5.26", features = ["derive"] }
# For the Standard Library
# For the Parser
bumpalo = "3.16.0"
# For pretty printing of errors
miette = { version = "7.4.0", features = ["fancy"] }
ron = "0.8.1"
thiserror = "2.0.11"
logos = "0.15.0"
serde = { version = "1.0.217", features = ["derive"] }
rand = "0.9.0"
time = { version = "0.3.37", features = ["formatting"] }
heck = "0.5.0"