diff options
| author | Fuwn <[email protected]> | 2024-03-24 14:01:36 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-03-24 14:01:36 +0000 |
| commit | 8afa8b983358402eecc3ba25a3e4b2d1b4338dfa (patch) | |
| tree | cb1b178ab631422d5c96382ca5e735762209bd4d /Cargo.toml | |
| parent | fix(ast): parse level 1 headings with emojis (diff) | |
| download | germ-8afa8b983358402eecc3ba25a3e4b2d1b4338dfa.tar.xz germ-8afa8b983358402eecc3ba25a3e4b2d1b4338dfa.zip | |
feat(crate): bump versionv0.3.11
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2,7 +2,7 @@ [package] name = "germ" -version = "0.3.10" +version = "0.3.11" authors = ["Fuwn <[email protected]>"] edition = "2021" description = "The Ultimate Gemini Toolkit." @@ -27,13 +27,13 @@ sync = ["tokio", "tokio-rustls"] [dependencies] anyhow = { version = "1.0.70", optional = true } # `Result` rustls = { version = "0.21.0", features = [ - "dangerous_configuration" + "dangerous_configuration", ], optional = true } # TLS tokio-rustls = { version = "0.24.0", optional = true } # Non-blocking TLS tokio = { version = "1.27.0", optional = true, default-features = false, features = [ "net", "io-util", "rt-multi-thread", - "macros" + "macros", ] } # Non-blocking I/O url = { version = "2.3.1", optional = true } # URL Validation |