-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 809 Bytes
/
Cargo.toml
File metadata and controls
25 lines (23 loc) · 809 Bytes
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
[workspace]
resolver = "2"
members = [
"crates/plotnik-bytecode",
"crates/plotnik-cli",
"crates/plotnik-compiler",
"crates/plotnik-core",
"crates/plotnik-langs",
"crates/plotnik-lib",
"crates/plotnik-vm",
]
[workspace.package]
version = "0.3.3"
license = "Apache-2.0"
repository = "https://github.com/plotnik-lang/plotnik"
edition = "2024"
[workspace.dependencies]
plotnik-bytecode = { path = "crates/plotnik-bytecode", version = "0.3.3" }
plotnik-compiler = { path = "crates/plotnik-compiler", version = "0.3.3" }
plotnik-core = { path = "crates/plotnik-core", version = "0.3.3" }
plotnik-langs = { path = "crates/plotnik-langs", version = "0.3.3" }
plotnik-lib = { path = "crates/plotnik-lib", version = "0.3.3" }
plotnik-vm = { path = "crates/plotnik-vm", version = "0.3.3" }