[package]
edition = "2021"
rust-version = "1.78"
name = "linkmarks-core"
version = "2.2.1"
authors = ["David Alejandro Mireles Llamas"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core domain model, traits, URL canonicalization, and local dedupe for LinkMarks."
homepage = "https://loust-pro.github.io/LinkMarks/"
readme = "README.md"
keywords = [
"bookmarks",
"self-hosted",
"local-first",
"crdt",
"rust",
]
categories = [
"database",
"data-structures",
"encoding",
]
license = "AGPL-3.0-or-later"
repository = "https://github.com/LOUST-PRO/LinkMarks"
[lib]
name = "linkmarks_core"
path = "src/lib.rs"
[[test]]
name = "canonical_test"
path = "tests/canonical_test.rs"
[[test]]
name = "config_test"
path = "tests/config_test.rs"
[[test]]
name = "store_test"
path = "tests/store_test.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.dirs]
version = "6"
[dependencies.rusqlite]
version = "0.40"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "1.1"
[dependencies.tracing]
version = "0.1"
[dependencies.ulid]
version = "3"
[dependencies.url]
version = "2"
[dev-dependencies.tempfile]
version = "3"