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] [package]
name = "xkcd-search" name = "xkcd-search"
version = "0.1.1" version = "0.1.2"
authors = ["trivernis <trivernis@protonmail.com>"] authors = ["trivernis <trivernis@protonmail.com>"]
edition = "2018" edition = "2018"
readme = "README.md" readme = "README.md"
@ -19,4 +19,7 @@ serde = {version = "1.0.125", features = ["serde_derive"]}
trigram = "0.4.4" trigram = "0.4.4"
[dev-dependencies] [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 archive;
mod comic; mod comic;
mod error; pub mod error;
mod search; mod search;
#[cfg(test)] #[cfg(test)]

Loading…
Cancel
Save