-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
58 lines (51 loc) · 1.52 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
50
51
52
53
54
55
56
57
58
[workspace.package]
version = "0.0.1"
authors = ["Amejonah1200 <amejonah@gmail.com>"]
edition = "2021"
[workspace]
resolver = "2"
default-members = ["crates/cli"]
members = [
"crates/cli",
"crates/parser",
"crates/source",
"crates/typing",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.dependencies]
aplang-parser = { path = "crates/parser" }
aplang-source = { path = "crates/source" }
aplang-typing = { path = "crates/typing" }
chumsky = { version = "1.0.0-alpha.7", features = [ "label" ] }
walkdir = { git = "https://github.com/APLanguage/walkdir.git" }
# chumsky = { version = "1.0.0-alpha.4", features = ["label"] }
num = "0.4.3"
num-traits = "0.2"
# num-derive = "0.3"
regex = "1.10"
logos = "0.14"
paste = "1.0"
# clap = "4.1"
anyhow = "1.0"
thiserror = "1.0"
traversal = "0.1"
either = "1.13"
lasso = "0.7"
indextree = "4.7"
slotmap = "1.0.7"
ariadne = { git = "https://github.com/APLanguage/ariadne.git", rev = "bdc392368fb45e71aff0feca58d0bf66f56698ae" }
itertools = "0.13"
toml = "0.8.19"
serde = { version = "1.0", features = ["derive"] }
same-file = "1.0.6"
strum = "0.26"
strum_macros = "0.26"
bigdecimal = { git = "https://github.com/APLanguage/bigdecimal-rs.git", rev = "864927641721a39299e460deebdc85d01ea0930b" }
tracing = "0.1"
tracing-subscriber = {version = "0.3", features = ["default", "json"]}
#[target.'cfg(windows)'.dependencies]
#winapi-util = { version = "0.1.9" }
[profile.release]
panic = "unwind"
# debug = "line-tables-only"
debug = "full"