-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (29 loc) · 861 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
[package]
name = "tiny_lang"
version = "0.1.0"
edition = "2021"
about = "Tiny Lang is a type safe general purpose programming language"
authors = ["Vivek K. [vivekascoder@gmail.com]"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.71"
regex = "1.8.4"
env_logger = "0.10.0"
log = "0.4.19"
clap = { version = "4.3.11", features = ["derive"] }
inkwell = { git = "https://github.com/TheDan64/inkwell", branch = "master", features = [
"llvm15-0",
] }
llvm-sys-150 = { package = "llvm-sys", version = "150.1.0", features = [
"prefer-dynamic",
] }
logos = "0.13.0"
ariadne = "0.3.0"
chumsky = "0.9.2"
either = "1.9.0"
[dev-dependencies]
insta = { version = "1.30.0", features = ["yaml"] }
[profile.dev.package.insta]
opt-level = 3
[profile.dev.package.similar]
opt-level = 3