f5b18dffaf
remove tag-prefix deletion as discussed here: https://github.com/igalic/Plume/pull/1 Update all versions numbers Update Crowdin config to v3 + Pull translations with cargo release Follow a more standard CHANGELOG format add release.toml configuration file for cargo-release and also add overrides in all other crates, since we only have one CHANGELOG.md: https://github.com/sunng87/cargo-release/issues/205 we might wanna have that looked at or fixed ignore .vscode/ add / backfill Changelog.md Co-authored-by: Mina Galić <me+git@igalic.co> Co-authored-by: Ana Gelez <ana@gelez.xyz> Reviewed-on: https://git.joinplu.me/Plume/Plume/pulls/835
27 lines
492 B
TOML
27 lines
492 B
TOML
[package]
|
|
name = "plume-cli"
|
|
version = "0.5.0"
|
|
authors = ["Plume contributors"]
|
|
edition = "2018"
|
|
|
|
[[bin]]
|
|
name = "plm"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
clap = "2.33"
|
|
dotenv = "0.14"
|
|
rpassword = "4.0"
|
|
|
|
[dependencies.diesel]
|
|
features = ["r2d2", "chrono"]
|
|
version = "*"
|
|
|
|
[dependencies.plume-models]
|
|
path = "../plume-models"
|
|
|
|
[features]
|
|
postgres = ["plume-models/postgres", "diesel/postgres"]
|
|
sqlite = ["plume-models/sqlite", "diesel/sqlite"]
|
|
search-lindera = ["plume-models/search-lindera"]
|