pluralsync/Cargo.toml

30 lines
669 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"
2024-01-16 13:02:24 +00:00
version = "1.2.0"
2023-11-20 15:39:40 +00:00
edition = "2021"
2024-01-16 13:02:24 +00:00
authors = ["jvnkyard@ak.lavenderfield.xyz"]
2023-11-20 15:39:40 +00:00
# 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"
2024-01-14 00:42:11 +00:00
reqwest = { version = "0.11.22", features = ["json", "multipart"] }
2024-01-16 13:02:24 +00:00
clap = { version = "4.4.10", features = ["derive"] }
2023-11-20 15:39:40 +00:00
tokio = { version = "1", features = ["full"] }
2024-01-16 13:02:24 +00:00
[features]
avatar = []
discord = ["avatar"]
fedi = ["avatar"]
2024-01-19 11:22:39 +00:00
jlog = []
2024-01-16 13:02:24 +00:00
[profile.release]
opt-level = 'z'
lto = true
codegen-units = 1
panic = 'abort'
strip = true
overflow-checks = true