-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (37 loc) · 1.2 KB
/
Copy pathCargo.toml
File metadata and controls
45 lines (37 loc) · 1.2 KB
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 = "tiny_lang"
version = "0.1.0"
edition = "2021"
description = "Tiny Lang is a type safe general purpose programming language"
authors = ["Vivek K. [vivekascoder@gmail.com]"]
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["llvm"]
llvm = ["dep:inkwell", "dep:llvm-sys-150"]
wasm = ["dep:wasm-bindgen", "dep:console_error_panic_hook"]
# 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",
], optional = true }
llvm-sys-150 = { package = "llvm-sys", version = "150.1.0", features = [
"prefer-dynamic",
], optional = true }
logos = "0.13.0"
ariadne = "0.3.0"
chumsky = { version = "0.9.2", default-features = false }
either = "1.9.0"
wasm-bindgen = { version = "0.2", optional = true }
console_error_panic_hook = { version = "0.1", optional = true }
[dev-dependencies]
insta = { version = "1.30.0", features = ["yaml"] }
[profile.dev.package.insta]
opt-level = 3
[profile.dev.package.similar]
opt-level = 3