-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
42 lines (35 loc) · 1.03 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
[package]
edition = "2021"
name = "shiika"
version = "0.9.1"
authors = [ "Yutaka HARA <yutaka.hara.gmail.com>" ]
default-run = "shiika"
[workspace]
members = [
"lib/*",
]
[features]
mac = []
[dependencies]
shiika_parser = { path = "lib/shiika_parser/" }
shiika_ast = { path = "lib/shiika_ast/" }
shiika_core = { path = "lib/shiika_core/" }
skc_corelib = { path = "lib/skc_corelib/" }
skc_ast2hir = { path = "lib/skc_ast2hir/" }
skc_mir = { path = "lib/skc_mir/" }
skc_codegen = { path = "lib/skc_codegen/" }
skc_async_experiment = { path = "lib/skc_async_experiment/" }
anyhow = "1.0"
inkwell = { git = "https://github.com/TheDan64/inkwell", features = ["llvm16-0"], rev = "4030f76" }
clap = { version = "3.1.18", features = ["derive"] }
env_logger = "0.8.2"
log = "0.4.11"
serde = { version = "1.0.125", features = ["derive"] }
serde_json = "1.0"
os_info = "3.7.0"
concolor = { version = "0.1.1", features = ["api"] }
chrono = "0.4"
chrono-tz = "0.8"
ariadne = "0.3.0"
[dev-dependencies]
insta = { version = "1.32.0", features = ["glob"] }