bookmark 0.1.3

Import, search, and open bookmarks from all browsers
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"
name = "bookmark"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Import, search, and open bookmarks from all browsers"
homepage = "https://github.com/yingkitw/bookmark"
documentation = "https://docs.rs/bookmark"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/yingkitw/bookmark"

[features]
cli = [
    "clap",
    "dialoguer",
    "open",
]
default = ["cli"]
mcp = []

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

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

[[bin]]
name = "bookmark-mcp"
path = "src/bin/bookmark-mcp.rs"
required-features = ["mcp"]

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

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[[test]]
name = "mcp_test"
path = "tests/mcp_test.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.clap]
version = "4.4"
features = ["derive"]
optional = true

[dependencies.dialoguer]
version = "0.11"
optional = true

[dependencies.dirs]
version = "5.0"

[dependencies.env_logger]
version = "0.11"

[dependencies.log]
version = "0.4"

[dependencies.open]
version = "5.0"
optional = true

[dependencies.petgraph]
version = "0.6"

[dependencies.plist]
version = "1.7"

[dependencies.quick-xml]
version = "0.31"

[dependencies.regex]
version = "1.10"

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

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

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.thiserror]
version = "1.0"

[dependencies.url]
version = "2.5"

[dev-dependencies.tempfile]
version = "3.10"