diff options
| author | Fuwn <[email protected]> | 2022-03-27 03:57:18 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-03-27 03:57:18 +0000 |
| commit | bb012b09bc74a1b37ae662c3fc6c50aec515e832 (patch) | |
| tree | eb6f290502de36c0fe43d6fcdc7a49c1f0ae16da /Cargo.toml | |
| parent | feat(router): modules (diff) | |
| download | windmark-bb012b09bc74a1b37ae662c3fc6c50aec515e832.tar.xz windmark-bb012b09bc74a1b37ae662c3fc6c50aec515e832.zip | |
feat(router): async!
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -15,18 +15,19 @@ keywords = ["gemini"] categories = ["web-programming"] [features] -logger = ["pretty_env_logger", "log"] +logger = ["pretty_env_logger"] [dependencies] # TCP openssl = "0.10.38" -# tokio = { version = "1.17.0", features = ["full"] } +tokio = { version = "0.2.4", features = ["full"] } # tokio-openssl = "0.5.0" # tokio-uds = "0.2.7" +tokio-openssl = "0.4.0" # Logging pretty_env_logger = { version = "0.4.0", optional = true } -log = { version = "0.4.16", optional = true } +log = "0.4.16" # URL url = "2.2.2" |