[package]
edition = "2024"
name = "rouchdb"
version = "0.1.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 = false
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 = "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 = "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 = "replication"
path = "tests/replication.rs"
[dependencies.rouchdb-adapter-http]
version = "0.1.1"
[dependencies.rouchdb-adapter-memory]
version = "0.1.1"
[dependencies.rouchdb-adapter-redb]
version = "0.1.1"
[dependencies.rouchdb-changes]
version = "0.1.1"
[dependencies.rouchdb-core]
version = "0.1.1"
[dependencies.rouchdb-query]
version = "0.1.1"
[dependencies.rouchdb-replication]
version = "0.1.1"
[dependencies.serde_json]
version = "1"
[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"]