[package]
edition = "2021"
rust-version = "1.87"
name = "clipmem"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "macOS clipboard memory backed by SQLite and searchable from OpenClaw"
homepage = "https://github.com/tristanmanchester/clipmem"
documentation = "https://docs.rs/clipmem"
readme = "README.md"
keywords = [
"clipboard",
"sqlite",
"macos",
"cli",
"search",
]
categories = [
"command-line-utilities",
"database",
]
license = "MIT"
repository = "https://github.com/tristanmanchester/clipmem"
[lib]
name = "clipmem"
path = "src/lib.rs"
[[bin]]
name = "clipmem"
path = "src/main.rs"
[[test]]
name = "cli_commands"
path = "tests/cli_commands.rs"
[[test]]
name = "database_roundtrip"
path = "tests/database_roundtrip.rs"
[[test]]
name = "skill_parity"
path = "tests/skill_parity.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.hex]
version = "0.4"
[dependencies.rusqlite]
version = "0.39"
features = ["bundled"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.time]
version = "0.3.47"
features = [
"formatting",
"parsing",
]
[target.'cfg(target_os = "macos")'.dependencies.objc2]
version = "0.6.2"
[target.'cfg(target_os = "macos")'.dependencies.objc2-app-kit]
version = "0.3.2"
features = [
"NSPasteboard",
"NSPasteboardItem",
"NSWorkspace",
"NSRunningApplication",
]
[profile.dist]
lto = "thin"
inherits = "release"