Expose error type and add rustls feature

Signed-off-by: trivernis <trivernis@protonmail.com>
main
trivernis 3 years ago
parent fbecddcfdc
commit 3d0b675ddd
Signed by: Trivernis
GPG Key ID: DFFFCC2C7A02DB45

@ -1,6 +1,6 @@
[package]
name = "xkcd-search"
version = "0.1.1"
version = "0.1.2"
authors = ["trivernis <trivernis@protonmail.com>"]
edition = "2018"
readme = "README.md"
@ -19,4 +19,7 @@ serde = {version = "1.0.125", features = ["serde_derive"]}
trigram = "0.4.4"
[dev-dependencies]
tokio = {version = "1.5.0", features = ["macros", "rt-multi-thread"]}
tokio = {version = "1.5.0", features = ["macros", "rt-multi-thread"]}
[features]
rustls = ["reqwest/rustls"]

@ -1,6 +1,6 @@
mod archive;
mod comic;
mod error;
pub mod error;
mod search;
#[cfg(test)]

Loading…
Cancel
Save