bear-rs 0.2.0

Rust library for reading and writing Bear.app notes via the local SQLite database
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "bear-rs"
version = "0.2.0"
build = false
include = [
    "src/**",
    "examples/**",
    "Cargo.toml",
    "Cargo.lock",
    "README.md",
    "LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust library for reading and writing Bear.app notes via the local SQLite database"
homepage = "https://github.com/BIRSAx2/bear-rs"
documentation = "https://docs.rs/bear-rs"
readme = "README.md"
keywords = [
    "bear",
    "notes",
    "macos",
    "sqlite",
]
categories = [
    "database",
    "api-bindings",
]
license = "MIT"
repository = "https://github.com/BIRSAx2/bear-rs"

[features]
cli = ["dep:clap"]

[lib]
name = "bear_rs"
path = "src/lib.rs"

[[bin]]
name = "bear"
path = "src/main.rs"
required-features = ["cli"]

[[example]]
name = "smoke"
path = "examples/smoke.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.base64]
version = "0.22"

[dependencies.chrono]
version = "0.4"
features = [
    "clock",
    "std",
]
default-features = false

[dependencies.clap]
version = "4.5"
features = [
    "derive",
    "env",
]
optional = true

[dependencies.plist]
version = "1.7"

[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.uuid]
version = "1.0"
features = ["v4"]