update ggemini version

This commit is contained in:
yggverse 2024-11-16 09:45:02 +02:00
parent 1b6f45152a
commit d43dfa3035
2 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ features = ["v1_6"]
[dependencies.gemini]
package = "ggemini"
version = "0.9.0"
version = "0.10.0"
[dependencies.gemtext]
package = "ggemtext"

View File

@ -476,7 +476,7 @@ impl Page {
move |request| match request {
Ok(_) => {
// Read meta from input stream
gemini::client::response::Meta::from_socket_connection_async(
gemini::client::response::Meta::from_stream_async(
connection.clone(),
Some(Priority::DEFAULT),
Some(cancellable.clone()),
@ -525,7 +525,7 @@ impl Page {
match response.mime() {
Some(gemini::client::response::meta::Mime::TextGemini) => {
// Read entire input stream to buffer
gemini::client::response::data::Text::from_socket_connection_async(
gemini::client::response::data::Text::from_stream_async(
connection,
Some(Priority::DEFAULT),
Some(cancellable.clone()),
@ -593,7 +593,7 @@ impl Page {
// Asynchronously move `InputStream` data from `SocketConnection` into the local `MemoryInputStream`
// this action allows to count the bytes for loading widget and validate max size for incoming data
gemini::gio::memory_input_stream::from_socket_connection_async(
gemini::gio::memory_input_stream::from_stream_async(
connection,
Some(cancellable.clone()),
Priority::DEFAULT,