23 lines
501 B
TOML
23 lines
501 B
TOML
[package]
|
|
name = "pluralsync"
|
|
version = "1.0.0"
|
|
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"
|
|
reqwest = { version = "0.11.22", features = ["json"] }
|
|
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
|