clipboard-substitutor/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
931 B
TOML
Raw Normal View History

2021-11-11 20:33:17 +05:30
[package]
name = "clipboard-substitutor"
version = "0.7.7"
2021-11-11 20:33:17 +05:30
authors = ["Harsh Shandilya <me@msfjarvis.dev>"]
edition = "2021"
description = "CLI tool to monitor clipboard changes and perform operations based on the contents"
repository = "https://github.com/msfjarvis/clipboard-substitutor"
homepage = "https://github.com/msfjarvis/clipboard-substitutor"
license = "MIT/Apache-2.0"
publish = false
2021-11-11 20:33:17 +05:30
keywords = []
readme = "README.md"
include = ["src/**/*", "LICENSE-*", "README.md"]
2021-11-11 20:33:17 +05:30
[dependencies]
anyhow = "1.0.82"
argv = "0.1.11"
copypasta = { version = "0.10.1", default-features = false, features = ["x11"] }
dirs = "5.0.1"
regex = "1.10.4"
serde = "1.0.200"
serde_derive = "1.0.200"
toml = "0.8.12"
tracing = "0.1.40"
tracing-journald = { version = "0.3.0", optional = true }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
2022-02-15 11:31:57 +05:30
[dev-dependencies]
assay = "0.1.1"
[features]
journald = ["tracing-journald"]