-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (49 loc) · 1.57 KB
/
Copy pathCargo.toml
File metadata and controls
53 lines (49 loc) · 1.57 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
[workspace]
members = ["crates/*", "examples/rust"]
resolver = "2"
[workspace.package]
edition = "2021"
license = "MIT/Apache-2.0"
repository = "https://github.com/planus-org/planus"
rust-version = "1.88"
version = "1.3.0"
[workspace.dependencies]
askama = "0.15.1"
bitflags = "2.11.0"
clap = { version = "4.5.54", features = ["derive", "color"] }
clap_complete = "4.5.65"
codespan = "0.13.1"
codespan-reporting = "0.13.1"
color-eyre = "0.6.5"
crossterm = "0.29.0"
derive_more = "2.1.1"
eyre = "0.6.12"
fuzzy-matcher = "0.3.7"
hashbrown = "0.16.1"
heck = "0.5.0"
indexmap = "2.13.0"
lalrpop = "0.22.2"
lalrpop-util = "0.22.2"
logos = "0.16.0"
num-traits = "0.2.19"
rand = "0.10.0"
random_color = "1.1.0"
ratatui = "0.30.0"
rust-lapper = "1.2.0"
serde = { version = "1.0.228", default-features = false }
serde_json = "1.0.149"
static_assertions = "1.1.0"
string-interner = "0.19.0"
thiserror = "2.0.18"
vec_map = "0.8.2"
# Our crates
array-init-cursor = { version = "0.2.1", path = "crates/array-init-cursor" }
planus = { version = "1.3.0", path = "crates/planus", default-features = false }
planus-buffer-inspection = { version = "1.3.0", path = "crates/planus-buffer-inspection" }
planus-codegen = { version = "1.3.0", path = "crates/planus-codegen" }
planus-inspector = { version = "1.3.0", path = "crates/planus-inspector" }
planus-lexer = { version = "1.3.0", path = "crates/planus-lexer" }
planus-translation = { version = "1.3.0", path = "crates/planus-translation" }
planus-types = { version = "1.3.0", path = "crates/planus-types" }
# used for doctests
planus-example = { path = "examples/rust" }