1
1
mirror of https://github.com/gbmor/clinte synced 2024-06-12 10:34:30 +00:00
clinte/Cargo.toml
Ben Morrison e63da0b7e0
check if $EDITOR contains flags before calling
If it contains flags, split by whitespace and pass them in as arguments
to std::process::Command. Otherwise, just pass it in as normal. This was
causing a panic/abort.
2020-07-02 02:11:03 -04:00

41 lines
965 B
TOML

[package]
name = "clinte"
version = "2.1.3"
authors = ["Ben Morrison <ben@gbmor.dev>"]
edition = "2018"
description = "CLI note posting system for shared UNIX boxes."
repository = "https://git.sr.ht/~gbmor/clinte"
readme = "README.md"
keywords = ["social", "unix", "notes", "messages"]
categories = ["command-line-utilities"]
license = "ISC"
[badges]
travis-ci = { repository = "gbmor/clinte", branch = "master" }
codecov = { repository = "gbmor/clinte", branch = "master", service = "github" }
maintenance = { status = "stable" }
[dependencies]
chrono = "^0.4"
fd-lock = "^1.1"
lazy_static = "^1.4"
log = "^0.4"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
simplelog = "^0.7"
users = "^0.9"
[dependencies.clap]
version = "^2.33"
default-features = false
features = [ "suggestions", "color" ]
[profile.release]
opt-level = 3
debug = false
lto = true
debug-assertions = false
panic = 'abort'
incremental = true
overflow-checks = false