-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 715 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (26 loc) · 715 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
26
27
28
29
[workspace]
resolver = "2"
members = ["tca-types", "tca-cli", "tca-ratatui"]
[workspace.package]
version = "0.7.0"
edition = "2021"
license = "MIT"
authors = ["carmiac"]
repository = "https://github.com/carmiac/tca-rust"
homepage = "https://github.com/carmiac/tca-rust"
[workspace.dependencies]
# Internal dependencies
tca-types = { path = "./tca-types", version = "0.7.0" }
# External dependencies
thiserror = "2.0"
serde = { version = "1.0", features = ["derive"] }
anyhow = "1.0"
colored = "3.1"
etcetera = "0.11.0"
heck = "0.5"
strum = { version = "0.28.0", features = ["derive"] }
terminal-colorsaurus = "1"
toml = "1.1"
clap = { version = "4.5", features = ["derive"] }
ratatui = "0.30"
crossterm = "0.29"