-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (46 loc) · 1.09 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (46 loc) · 1.09 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
53
54
55
56
# SPDX-License-Identifier: MPL-2.0
[package]
name = "wokelang"
version = "0.1.0"
edition = "2021"
authors = ["Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>"]
description = "A human-centered, consent-driven programming language"
license = "MPL-2.0"
repository = "https://github.com/hyperpolymath/wokelang"
[lib]
name = "wokelang"
path = "src/lib.rs"
[[bin]]
name = "woke"
path = "src/main.rs"
[[bin]]
name = "woke-lsp"
path = "src/bin/woke-lsp.rs"
[[bin]]
name = "woke-dap"
path = "src/bin/wokelang-dap.rs"
[dependencies]
logos = "0.14"
thiserror = "1.0"
miette = { version = "7.0", features = ["fancy"] }
rustyline = { version = "14.0", features = ["derive"] }
dirs = "5.0"
clap = { version = "4.5", features = ["derive"] }
# LSP dependencies
tower-lsp = "0.20"
tokio = { version = "1", features = ["full"] }
lsp-types = "0.95"
dashmap = "6.0"
once_cell = "1.19"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
[dev-dependencies]
pretty_assertions = "1.4"
proptest = "1.4"
[profile.release]
lto = true
opt-level = "z"
strip = true
[profile.release-wasm]
inherits = "release"
opt-level = "s"