-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
113 lines (97 loc) · 2.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[package]
name = "tethys"
version = "0.1.0"
edition = "2021"
default-run = "tethys"
rust-version = "1.66.1"
license = "BSD-3-Clause"
[dependencies]
ariadne = "0.3.0"
logos = "0.12.1"
derive_more = "0.99.17"
pretty = "0.12.3"
index_vec = "0.1.3"
thiserror = "1.0.37"
eyre = "0.6.8"
stable-vec = "0.4.0"
internment = "0.7.0"
id-arena = "2.2.1"
im = "15.1.0"
chumsky = { git = "https://github.com/zesterer/chumsky.git", features = ["pratt", "label"] }
cranelift-entity = "0.103.0"
itertools = "0.12.0"
spinneret = { git = "https://git.sr.ht/~thepuzzlemaker/spinneret" }
llvm-sys = { version = "170", features = ["prefer-static"] }
libc = "0.2.153"
[dependencies.calypso_base]
git = "https://github.com/calypso-lang/calypso.git"
rev = "fe9c168"
default-features = false
features = ["span", "symbol"]
[dependencies.color-eyre]
version = "0.6.1"
optional = true
[dependencies.tracing-subscriber]
version = "0.3.16"
optional = true
features = ["parking_lot", "env-filter", "time"]
[dependencies.tracing]
version = "0.1.37"
features = ["max_level_trace", "release_max_level_info"]
[dependencies.serde]
version = "1.0.147"
optional = true
features = ["derive"]
[dependencies.serde_yaml]
version = "0.9.14"
optional = true
[dependencies.clap]
version = "4.1.8"
optional = true
features = ["color", "derive"]
[dependencies.walkdir]
version = "2.3.2"
optional = true
[dependencies.indicatif]
version = "0.16.2"
optional = true
[dependencies.tower-lsp]
version = "0.19.0"
optional = true
[dependencies.tokio]
version = "1.21.2"
optional = true
features = ["full"]
[features]
default = ["tethys-deps"]
tethys-deps = [
"color-eyre",
"tracing-subscriber"
]
uitest-deps = [
"color-eyre",
"tracing-subscriber",
"serde",
"serde_yaml",
"clap",
"walkdir",
"indicatif"
]
debug-lsp-deps = [
"color-eyre",
"tracing-subscriber",
"tower-lsp",
"tokio"
]
[[bin]]
name = "tethys"
path = "src/bin/tethys.rs"
required-features = ["tethys-deps"]
[[bin]]
name = "uitest"
path = "src/bin/uitest/main.rs"
required-features = ["uitest-deps"]
[[bin]]
name = "debug-lsp"
path = "src/bin/debug-lsp/main.rs"
required-features = ["debug-lsp-deps"]