-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
71 lines (63 loc) · 1.83 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
[package]
name = "claw-cli"
description = "The compiler for the Claw language"
readme = "README.md"
version = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
edition = { workspace = true }
repository = { workspace = true }
[[bin]]
name = "claw-cli"
path = "src/bin.rs"
[dependencies]
claw-common = { workspace = true }
claw-ast = { workspace = true }
claw-parser = { workspace = true }
claw-resolver = { workspace = true }
claw-codegen = { workspace = true }
clap = { workspace = true }
thiserror = { workspace = true }
miette = { workspace = true }
logos = { workspace = true }
wasm-encoder ={ workspace = true }
cranelift-entity = { workspace = true }
wat = { workspace = true }
wit-parser = { workspace = true }
[dev-dependencies]
pretty_assertions = { workspace = true }
wasmtime = { workspace = true }
wasmprinter = { workspace = true }
[workspace]
members = [
"crates/ast",
"crates/codegen",
"crates/common",
"crates/lib",
"crates/parser",
"crates/resolver",
]
[workspace.package]
version = "0.2.6"
authors = ["Robin Brown"]
license = "MIT OR Apache-2.0"
edition = "2018"
homepage = "https://claw-lang.dev/"
repository = "https://github.com/esoterra/claw-lang"
[workspace.dependencies]
claw-common = { path = "./crates/common", version = "0.2.6" }
claw-ast = { path = "./crates/ast", version = "0.2.6" }
claw-parser = { path = "./crates/parser", version = "0.2.6" }
claw-resolver = { path = "./crates/resolver", version = "0.2.6" }
claw-codegen = { path = "./crates/codegen", version = "0.2.6" }
clap = { version = "3.0.0-rc.7", features = ["derive"] }
thiserror = "1.0.30"
miette = { version = "7.2.0", features = ["fancy"] }
logos = "0.13.0"
wasm-encoder = "0.207"
cranelift-entity = "0.105.3"
wat = "1.207"
pretty_assertions = "1.1.0"
wasmtime = "20"
wasmprinter = "0.207"
wit-parser = "0.207"