diff --git a/Cargo.toml b/Cargo.toml index 34afcff..075a83d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,12 @@ [package] name = "couch_rs_test" -version = "0.1.0" +version = "0.2.0" edition = "2021" +license = "MIT" +description = "Tools for testing a CouchDB repository implemented in Rust with couch_rs." +repository = "https://github.com/kingledion/couch_rs_test" +readme = "README.md" +keywords = ["couchdb", "testing"] [dependencies] http = "0.2" diff --git a/src/lib.rs b/src/lib.rs index 91f74a2..1d06f6d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -49,7 +49,9 @@ use couch_rs::{database::Database, document::TypedCouchDocument, error::CouchErr use rand::{distributions::Alphanumeric, Rng}; use tokio_util::sync::CancellationToken; -/// Configuration for [TestRepo]. This configuration is to create a new [couch_rs::Client](https://docs.rs/couch_rs/latest/couch_rs/struct.Client.html) +/// Configuration for [TestRepo]. +/// +/// This configuration is to create a new [couch_rs::Client](https://docs.rs/couch_rs/latest/couch_rs/struct.Client.html) /// and name the associated [couch_rs::database::Database](https://docs.rs/couch_rs/latest/couch_rs/database/struct.Database.html). #[derive(Clone)] pub struct TestRepoConfig {