-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
85 lines (73 loc) · 2.36 KB
/
Cargo.toml
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[package]
name = "euphony"
version = "2.1.1"
edition = "2021"
description = "A personal music library transcode manager."
readme = "README.md"
authors = ["Simon Goričar <[email protected]>"]
repository = "https://github.com/DefaultSimon/euphony"
rust-version = "1.70.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["euphony_library", "euphony_configuration"]
[workspace.dependencies]
# Workspace crates
euphony_library = { path = "./euphony_library" }
euphony_configuration = { path = "./euphony_configuration" }
# Error handling
miette = { version = "7.2.0", features = ["fancy"] }
thiserror = "1.0.58"
# Serialization and deserialization
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
toml = "0.8.11"
# Other dependencies
clap = { version = "4.5.3", features = ["derive"] }
pathdiff = "0.2.1"
dunce = "1.0.4"
state = "0.6.0"
ratatui = "0.26.1"
crossterm = "0.27.0"
tokio = { version = "1.36.0", features = ["sync"] }
rand = "0.8.5"
ansi-to-tui = "4.0.1"
ctrlc = "3.4.4"
crossbeam = "0.8.4"
strip-ansi-escapes = "0.2.0"
oneshot = { version = "0.1.6", default-features = false, features = ["std"] }
closure = "0.3.0"
linked-hash-map = "0.5.6"
parking_lot = "0.12.1"
textwrap = "0.16.1"
chrono = "0.4.35"
fs-more = { git = "https://github.com/simongoricar/fs-more.git", rev = "088c1cb0421836741bffe266c69a9767d676064b", features = ["fs-err", "miette"] }
[dependencies]
# Workspace dependencies
euphony_library = { workspace = true }
euphony_configuration = { workspace = true }
# Error handling
miette = { workspace = true }
thiserror = { workspace = true }
# Serialization and deserialization
serde = { workspace = true }
serde_json = { workspace = true }
toml = { workspace = true }
# Other dependencies
clap = { workspace = true }
pathdiff = { workspace = true }
dunce = { workspace = true }
state = { workspace = true }
ratatui = { workspace = true }
crossterm = { workspace = true }
tokio = { workspace = true }
rand = { workspace = true }
ansi-to-tui = { workspace = true }
ctrlc = { workspace = true }
crossbeam = { workspace = true }
strip-ansi-escapes = { workspace = true }
oneshot = { workspace = true }
closure = { workspace = true }
linked-hash-map = { workspace = true }
parking_lot = { workspace = true }
textwrap = { workspace = true }
chrono = { workspace = true }