diff options
| author | Fuwn <[email protected]> | 2024-03-24 14:24:20 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-03-24 14:34:09 +0000 |
| commit | 3970616451ab4336e37a7ddfdc67f51e01e55926 (patch) | |
| tree | 6bf9fa01811004ff408ac5da40354bc34ddabc26 /Cargo.toml | |
| parent | feat(crate): bump version (diff) | |
| download | germ-3970616451ab4336e37a7ddfdc67f51e01e55926.tar.xz germ-3970616451ab4336e37a7ddfdc67f51e01e55926.zip | |
refactor: module for blocking, default to non-blocking
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -16,13 +16,13 @@ categories = ["encoding"] [features] ast = [] +blocking = ["rustls", "url", "anyhow"] convert = ["ast"] default = ["ast", "convert", "meta", "request"] macros = ["ast", "convert"] meta = [] -request = ["rustls", "url", "anyhow"] +request = ["rustls", "url", "anyhow", "tokio", "tokio-rustls"] quick = [] -sync = ["tokio", "tokio-rustls"] [dependencies] anyhow = { version = "1.0.70", optional = true } # `Result` |