aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-05-17 10:55:54 +0000
committerFuwn <[email protected]>2022-05-17 10:55:54 +0000
commit8ffa9b9b44cd9366dc4a6c1e9e8925d8c3eb59cd (patch)
treea0a2fe36dbb3df0f10ba16bc5aa82601b11c84c7 /Cargo.toml
parentdocs(cargo): bump version (diff)
downloadgerm-8ffa9b9b44cd9366dc4a6c1e9e8925d8c3eb59cd.tar.xz
germ-8ffa9b9b44cd9366dc4a6c1e9e8925d8c3eb59cd.zip
feat(request): make gemini requests
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml6
1 files changed, 6 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 0ec440c..b3b73f1 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -17,3 +17,9 @@ categories = ["encoding"]
[features]
ast = []
convert = []
+request = ["rustls", "url", "anyhow"]
+
+[dependencies]
+rustls = { version = "0.20.5", features = ["dangerous_configuration"], optional = true } # TLS
+url = { version = "2.2.2", optional = true } # URL Validation
+anyhow = { version = "1.0.57", optional = true } # `Result`