pluralsync/Cargo.toml

34 lines
766 B
TOML

[package]
name = "pluralsync"
version = "1.2.0"
edition = "2021"
authors = ["jvnkyard@ak.lavenderfield.xyz"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dirs = "5.0.1"
serde = { version = "1.0.192", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.11.22", features = ["json", "multipart"] }
clap = { version = "4.4.10", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
ratatui = "0.26.0"
crossterm = "0.27.0"
color-eyre = "0.6.2"
[features]
default = ["fedi","discord","jlog"]
avatar = []
discord = ["avatar"]
fedi = ["avatar"]
jlog = []
[profile.release]
opt-level = 'z'
lto = true
codegen-units = 1
panic = 'abort'
strip = true
overflow-checks = true