-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (33 loc) · 1.17 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
[package]
name = "peertube-viewer-rs"
version = "1.8.6"
authors = ["Sosthène Guédon <[email protected]>"]
edition = "2021"
build = "build.rs"
rust-version = "1.74"
[dependencies]
peertube-api = {version = "*", path = "crates/peertube-api"}
preloadable-list = {version = "*", path = "crates/preloadable-list"}
peertube-viewer-utils = {version = "*", path = "crates/peertube-viewer-utils"}
termion = "4.0.0"
time = { version = "0.3.21", features = ["local-offset", "formatting"] }
rustyline = "14"
clap = { version = "4.3.0", default-features = false, features = [ "wrap_help", "color", "std", "suggestions"] }
toml = "0.8.8"
unicode-width = "0.1.10"
directories = "5.0.1"
textwrap = "0.16.0"
terminal_size = "0.3.0"
url = "2.3.1"
ureq = "2.6.2"
[dev-dependencies]
pretty_assertions = "1.3.0"
[workspace]
members = ["crates/peertube-api/", "crates/peertube-ser/", "crates/preloadable-list/", "crates/peertube-viewer-utils/"]
[build-dependencies]
clap = { version = "4.3.0", default-features = false, features = ["suggestions", "std"] }
time = { version = "0.3.21", features = ["local-offset", "parsing", "formatting"] }
clap_complete = "4.3.0"
[profile.release]
lto="fat"
opt-level="s"