pluralsync/Cargo.toml

23 lines
501 B
TOML
Raw Normal View History

2023-11-20 15:39:40 +00:00
[package]
2023-11-23 17:20:33 +00:00
name = "pluralsync"
version = "1.0.0"
2023-11-20 15:39:40 +00:00
edition = "2021"
# 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"
2023-11-22 12:11:49 +00:00
reqwest = { version = "0.11.22", features = ["json"] }
2023-11-20 15:39:40 +00:00
rofi = "0.3.0"
tokio = { version = "1", features = ["full"] }
[profile.release]
opt-level = 'z'
lto = true
codegen-units = 1
panic = 'abort'
strip = true
overflow-checks = true