-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (32 loc) · 1.15 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
[package]
name = "whiskey"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "whiskey"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
whistle_lexer = { git = "https://github.com/whistle-lang/whistle" }
whistle_parser = { git = "https://github.com/whistle-lang/whistle" }
whistle_common = { git = "https://github.com/whistle-lang/whistle" }
whistle_ast = { git = "https://github.com/whistle-lang/whistle" }
whistle_compiler = { git = "https://github.com/whistle-lang/whistle" }
whistle_preprocessor = { git = "https://github.com/whistle-lang/whistle" }
clap = { version = "4.0.29", features = ["derive"] }
wasmprinter = "0.2.45"
wasmer = "3.1.0"
wasmer-wasi = "3.1.0"
wasmer-compiler-cranelift = "3.1.0"
tokio = { version = "1.23.0", features = ["full"] }
tokio-util = { version = "0.7", features = ["compat"] }
tower-lsp = { version = "0.20.0"}
toml = "0.7.2"
tracing-subscriber = "0.3"
serde = { version = "1.0.149", features = ["derive"] }
serde_json = "1.0.89"
futures = "0.3.25"
ropey = "1.6.0"
[dependencies.uuid]
version = "1.2.2"
features = ["v4", "fast-rng", "macro-diagnostics"]