Compare commits

..

4 commits

Author SHA1 Message Date
625da21941
chore: Bump the version to 0.3.0
All checks were successful
Rust CI / Rust CI (push) Successful in 1m43s
Signed-off-by: Awiteb <a@4rs.nl>
2024-08-13 00:29:44 +03:00
8b17b6d824
chore: Update README.md
Signed-off-by: Awiteb <a@4rs.nl>
2024-08-13 00:29:43 +03:00
e5defe0f61
chore: Bump the version to 0.2.0
Signed-off-by: Awiteb <a@4rs.nl>
2024-08-12 21:29:40 +00:00
0f83f29c85
docs: Improve the docs
Signed-off-by: Awiteb <a@4rs.nl>
2024-08-12 21:29:12 +00:00
4 changed files with 7 additions and 0 deletions

View file

@ -26,6 +26,10 @@ either = { version = "1.13.0", default-features = false }
cacache-storage = ["dep:cacache"] cacache-storage = ["dep:cacache"]
simple-generator = ["dep:captcha"] simple-generator = ["dep:captcha"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dev-dependencies] [dev-dependencies]
tempfile = "3.9" tempfile = "3.9"
tokio = { version = "1.35", features = ["macros", "rt-multi-thread"] } tokio = { version = "1.35", features = ["macros", "rt-multi-thread"] }

View file

@ -12,6 +12,7 @@
#[cfg(feature = "simple-generator")] #[cfg(feature = "simple-generator")]
mod simple_generator; mod simple_generator;
#[cfg_attr(docsrs, doc(cfg(feature = "simple-generator")))]
#[cfg(feature = "simple-generator")] #[cfg(feature = "simple-generator")]
pub use simple_generator::*; pub use simple_generator::*;

View file

@ -13,6 +13,7 @@
#![deny(warnings)] #![deny(warnings)]
#![deny(missing_docs)] #![deny(missing_docs)]
#![deny(clippy::print_stdout)] #![deny(clippy::print_stdout)]
#![cfg_attr(docsrs, feature(doc_cfg))]
mod captcha_gen; mod captcha_gen;
mod finder; mod finder;

View file

@ -15,6 +15,7 @@ use std::{sync::Arc, time::Duration};
mod cacache_storage; mod cacache_storage;
mod memory_storage; mod memory_storage;
#[cfg_attr(docsrs, doc(cfg(feature = "cacache-storage")))]
#[cfg(feature = "cacache-storage")] #[cfg(feature = "cacache-storage")]
pub use cacache_storage::*; pub use cacache_storage::*;
pub use memory_storage::*; pub use memory_storage::*;