aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-03-24 14:01:36 +0000
committerFuwn <[email protected]>2024-03-24 14:01:36 +0000
commit8afa8b983358402eecc3ba25a3e4b2d1b4338dfa (patch)
treecb1b178ab631422d5c96382ca5e735762209bd4d /Cargo.toml
parentfix(ast): parse level 1 headings with emojis (diff)
downloadgerm-8afa8b983358402eecc3ba25a3e4b2d1b4338dfa.tar.xz
germ-8afa8b983358402eecc3ba25a3e4b2d1b4338dfa.zip
feat(crate): bump versionv0.3.11
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d54df13..c461e6c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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