bear-cli 0.2.2

A native Rust CLI for Bear.app on macOS using Bear's SQLite database for reads and x-callback-url actions for writes
Documentation
[package]
name = "bear-cli"
version = "0.2.2"
description = "A native Rust CLI for Bear.app on macOS using Bear's SQLite database for reads and x-callback-url actions for writes"
edition = "2024"
rust-version = "1.85"
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/bear-cli"
repository = "https://github.com/BIRSAx2/bear-cli"
homepage = "https://github.com/BIRSAx2/bear-cli"
keywords = ["bear", "notes", "cli", "macos"]
categories = ["command-line-utilities"]
include = ["src/**", "Cargo.toml", "Cargo.lock", "README.md", "LICENSE"]
default-run = "bear"

[dependencies]
anyhow = "1.0"
base64 = "0.22"
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
clap = { version = "4.5", features = ["derive", "env"] }
rusqlite = { version = "0.31", features = ["bundled"] }
serde_json = "1.0"

[[bin]]
name = "bear"
path = "src/main.rs"