Skip to content

Commit

Permalink
Add repository information
Browse files Browse the repository at this point in the history
  • Loading branch information
kingledion committed Dec 27, 2022
1 parent 4827717 commit eafdcb7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit eafdcb7

Please sign in to comment.