Major version bumps: - reqwest: 0.12 -> 0.13 (rustls-tls feature renamed to rustls) - mlua: 0.10 -> 0.11 - freedesktop-desktop-entry: 0.7 -> 0.8 - rusqlite: 0.32 -> 0.39 Cargo.lock refreshed with latest semver-compatible versions across all transitive dependencies. Note: gtk4 0.11 / glib-build-tools 0.22 skipped (requires Rust 1.92, current toolchain is 1.91).
32 lines
918 B
TOML
32 lines
918 B
TOML
[package]
|
|
name = "owlry-plugin-bookmarks"
|
|
version = "0.4.10"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Bookmarks plugin for owlry - browser bookmark search"
|
|
keywords = ["owlry", "plugin", "bookmarks", "browser"]
|
|
categories = ["web-programming"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"] # Compile as dynamic library (.so)
|
|
|
|
[dependencies]
|
|
# Plugin API for owlry
|
|
owlry-plugin-api = { path = "../owlry-plugin-api" }
|
|
|
|
# ABI-stable types (re-exported from owlry-plugin-api, but needed for RString etc)
|
|
abi_stable = "0.11"
|
|
|
|
# For finding browser config directories
|
|
dirs = "5.0"
|
|
|
|
# For parsing Chrome bookmarks JSON
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
# For reading Firefox bookmarks (places.sqlite)
|
|
# Use bundled SQLite to avoid system library version conflicts
|
|
rusqlite = { version = "0.39", features = ["bundled"] }
|