[package]
edition = "2024"
name = "rouchdb"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local-first document database with CouchDB replication protocol support"
homepage = "https://github.com/RubyLabApp/rouchdb"
readme = "README.md"
keywords = [
"database",
"couchdb",
"pouchdb",
"replication",
"local-first",
]
categories = [
"database",
"data-structures",
]
license = "MIT"
repository = "https://github.com/RubyLabApp/rouchdb"
[lib]
name = "rouchdb"
path = "src/lib.rs"
[[test]]
name = "all_docs"
path = "tests/all_docs.rs"
[[test]]
name = "attachments"
path = "tests/attachments.rs"
[[test]]
name = "bug_hunting"
path = "tests/bug_hunting.rs"
[[test]]
name = "changes_feed"
path = "tests/changes_feed.rs"
[[test]]
name = "conflicts"
path = "tests/conflicts.rs"
[[test]]
name = "data_diversity"
path = "tests/data_diversity.rs"
[[test]]
name = "database_ops"
path = "tests/database_ops.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "error_conditions"
path = "tests/error_conditions.rs"
[[test]]
name = "http_crud"
path = "tests/http_crud.rs"
[[test]]
name = "mango_queries"
path = "tests/mango_queries.rs"
[[test]]
name = "map_reduce"
path = "tests/map_reduce.rs"
[[test]]
name = "parity_changes"
path = "tests/parity_changes.rs"
[[test]]
name = "parity_core"
path = "tests/parity_core.rs"
[[test]]
name = "parity_http"
path = "tests/parity_http.rs"
[[test]]
name = "parity_plugins"
path = "tests/parity_plugins.rs"
[[test]]
name = "parity_replication"
path = "tests/parity_replication.rs"
[[test]]
name = "parity_views"
path = "tests/parity_views.rs"
[[test]]
name = "post_and_attachments"
path = "tests/post_and_attachments.rs"
[[test]]
name = "replication"
path = "tests/replication.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.rouchdb-adapter-http]
version = "0.2.1"
[dependencies.rouchdb-adapter-memory]
version = "0.2.1"
[dependencies.rouchdb-adapter-redb]
version = "0.2.1"
[dependencies.rouchdb-changes]
version = "0.2.1"
[dependencies.rouchdb-core]
version = "0.2.1"
[dependencies.rouchdb-query]
version = "0.2.1"
[dependencies.rouchdb-replication]
version = "0.2.1"
[dependencies.rouchdb-views]
version = "0.2.1"
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["sync"]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.async-trait]
version = "0.1"
[dev-dependencies.base64]
version = "0.22"
[dev-dependencies.reqwest]
version = "0.12"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.uuid]
version = "1"
features = ["v4"]