clipboard-substitutor/Cargo.toml

24 lines
705 B
TOML
Raw Normal View History

2021-11-11 20:33:17 +05:30
[package]
name = "clipboard-substitutor"
2022-01-23 15:45:09 +05:30
version = "0.4.1"
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"
keywords = []
readme = "README.md"
include = ["src/**/*", "LICENSE-*", "README.md"]
2021-11-11 20:33:17 +05:30
[dependencies]
2022-01-23 14:08:11 +05:30
anyhow = "1.0.53"
2021-11-11 20:33:17 +05:30
clipboard = "0.5.0"
dirs = "4.0.0"
log = { version = "0.4.14", features = ["release_max_level_trace"] }
pretty_env_logger = "0.4.0"
2021-11-12 09:42:39 +05:30
regex = "1.5.4"
serde = "1.0.136"
serde_derive = "1.0.136"
2021-11-11 20:33:17 +05:30
toml = "0.5.8"