diff options
| author | Fuwn <[email protected]> | 2022-05-17 10:55:54 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-05-17 10:55:54 +0000 |
| commit | 8ffa9b9b44cd9366dc4a6c1e9e8925d8c3eb59cd (patch) | |
| tree | a0a2fe36dbb3df0f10ba16bc5aa82601b11c84c7 /Cargo.toml | |
| parent | docs(cargo): bump version (diff) | |
| download | germ-8ffa9b9b44cd9366dc4a6c1e9e8925d8c3eb59cd.tar.xz germ-8ffa9b9b44cd9366dc4a6c1e9e8925d8c3eb59cd.zip | |
feat(request): make gemini requests
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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` |