-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (44 loc) · 1.48 KB
/
Copy pathCargo.toml
File metadata and controls
52 lines (44 loc) · 1.48 KB
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
[package]
name = "splitscript"
version = "0.1.0"
edition = "2024"
description = "A statically typed autosplitter language targeting WebAssembly GC"
license = "MIT OR Apache-2.0"
[workspace]
members = [
"crates/splitscript-process-native",
"crates/splitscript-syntax",
"crates/splitscript-stdlib-loader",
"crates/splitscript-vscode-wasm",
]
[profile.max-opt]
inherits = "release"
codegen-units = 1
lto = "fat"
panic = "abort"
strip = "symbols"
[dependencies]
splitscript-syntax = { path = "crates/splitscript-syntax" }
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"
gimli = { version = "0.33.0", default-features = false, features = ["write"] }
wasm-encoder = "0.254.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
clap = { version = "4.6", features = ["derive"] }
codespan-reporting = "0.13.1"
pulldown-cmark = { version = "0.13.4", default-features = false, features = ["html"] }
supports-color = "3.0.2"
textwrap = { version = "0.16.2", default-features = false, features = ["terminal_size"] }
[build-dependencies]
splitscript-stdlib-loader = { path = "crates/splitscript-stdlib-loader" }
[dev-dependencies]
gimli = { version = "0.33.0", default-features = false, features = ["read"] }
wasmparser = "0.254.0"
wasmtime = { version = "45.0.3", default-features = false, features = ["cranelift", "gc", "gc-drc", "runtime", "std"] }
zmij = "1.0.21"
[[bin]]
name = "splitc"
path = "src/main.rs"
[[bin]]
name = "splitls"
path = "src/bin/splitls.rs"