-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (40 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
43 lines (40 loc) · 1.45 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
[workspace]
resolver = "3"
members = [
"crates/tui-vfx",
"crates/tui-vfx-types",
"crates/tui-vfx-core",
"crates/tui-vfx-core-macros",
"crates/tui-vfx-geometry",
"crates/tui-vfx-compositor",
"crates/tui-vfx-style",
"crates/tui-vfx-content",
"crates/tui-vfx-shadow",
"crates/tui-vfx-debug",
"xtask",
]
[workspace.package]
version = "0.2.6"
edition = "2024"
rust-version = "1.86.0"
license = "MIT"
repository = "https://github.com/5ocworkshop/tui-vfx"
keywords = ["tui", "terminal", "effects", "animation"]
categories = ["command-line-interface", "graphics"]
[workspace.dependencies]
# Internal crates
tui-vfx-types = { path = "crates/tui-vfx-types", version = "0.2.6" }
tui-vfx-core = { path = "crates/tui-vfx-core", version = "0.2.6" }
tui-vfx-core-macros = { path = "crates/tui-vfx-core-macros", version = "0.2.6" }
tui-vfx-geometry = { path = "crates/tui-vfx-geometry", version = "0.2.6" }
tui-vfx-compositor = { path = "crates/tui-vfx-compositor", version = "0.2.6" }
tui-vfx-style = { path = "crates/tui-vfx-style", version = "0.2.6" }
tui-vfx-content = { path = "crates/tui-vfx-content", version = "0.2.6" }
tui-vfx-shadow = { path = "crates/tui-vfx-shadow", version = "0.2.6" }
tui-vfx-debug = { path = "crates/tui-vfx-debug", version = "0.2.6" }
# External dependencies (preserve versions from source crates)
mixed-signals = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rand = "0.8"
smallvec = "1.11"