mirror of
https://github.com/YGGverse/agate.git
synced 2026-04-08 12:35:28 +00:00
update dependencies
This commit is contained in:
parent
6af5efbf67
commit
37eef3dc9b
4 changed files with 21 additions and 7 deletions
|
|
@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [3.1.3] - 2021-10-25
|
||||||
|
Thank you to @FoxKyong for contributing to this release.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
* the fix for dual stack listening from 3.1.2 was executed asynchronously and would thus
|
||||||
|
sometimes fail. starting the listeners on different socket addresses is now synchronous
|
||||||
|
|
||||||
## [3.1.2] - 2021-10-15
|
## [3.1.2] - 2021-10-15
|
||||||
Thank you to @etam for contributing to this release.
|
Thank you to @etam for contributing to this release.
|
||||||
|
|
||||||
|
|
|
||||||
10
Cargo.lock
generated
10
Cargo.lock
generated
|
|
@ -4,7 +4,7 @@ version = 3
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "agate"
|
name = "agate"
|
||||||
version = "3.1.2"
|
version = "3.1.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"configparser",
|
"configparser",
|
||||||
|
|
@ -90,9 +90,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "configparser"
|
name = "configparser"
|
||||||
version = "2.1.0"
|
version = "3.0.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "f7201ee416d124d589a820111ba755930df8b75855321a9a1b87312a0597ec8f"
|
checksum = "06821ea598337a8412cf47c5b71c3bc694a7f0aed188ac28b836fab164a2c202"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "env_logger"
|
name = "env_logger"
|
||||||
|
|
@ -234,9 +234,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libc"
|
name = "libc"
|
||||||
version = "0.2.104"
|
version = "0.2.105"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "7b2f96d100e1cf1929e7719b7edb3b90ab5298072638fccd77be9ce942ecdfce"
|
checksum = "869d572136620d55835903746bcb5cdc54cb2851fd0aeec53220b4bb65ef3013"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "log"
|
name = "log"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "agate"
|
name = "agate"
|
||||||
version = "3.1.2"
|
version = "3.1.3"
|
||||||
authors = ["Matt Brubeck <mbrubeck@limpet.net>", "Johann150 <johann+agate@qwertqwefsday.eu>"]
|
authors = ["Matt Brubeck <mbrubeck@limpet.net>", "Johann150 <johann+agate@qwertqwefsday.eu>"]
|
||||||
description = "Very simple server for the Gemini hypertext protocol"
|
description = "Very simple server for the Gemini hypertext protocol"
|
||||||
keywords = ["server", "gemini", "hypertext", "internet", "protocol"]
|
keywords = ["server", "gemini", "hypertext", "internet", "protocol"]
|
||||||
|
|
@ -12,7 +12,7 @@ edition = "2018"
|
||||||
exclude = ["/tools", "/.github", "/Cross.toml", "/content", "/CODE_OF_CONDUCT.md", "/CONTRIBUTING.md", "/CHANGELOG.md"]
|
exclude = ["/tools", "/.github", "/Cross.toml", "/content", "/CODE_OF_CONDUCT.md", "/CONTRIBUTING.md", "/CHANGELOG.md"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
configparser = "2.0"
|
configparser = "3.0"
|
||||||
env_logger = { version = "0.9", default-features = false, features = ["atty", "humantime", "termcolor"] }
|
env_logger = { version = "0.9", default-features = false, features = ["atty", "humantime", "termcolor"] }
|
||||||
futures-util = "0.3"
|
futures-util = "0.3"
|
||||||
getopts = "0.2.21"
|
getopts = "0.2.21"
|
||||||
|
|
|
||||||
|
|
@ -198,6 +198,13 @@ The format is based on Keep a Changelog and this project adheres to Semantic Ver
|
||||||
=> https://keepachangelog.com/en/1.0.0/ Keep a Changelog home page
|
=> https://keepachangelog.com/en/1.0.0/ Keep a Changelog home page
|
||||||
=> https://semver.org/spec/v2.0.0.html Semantic versioning standard v2.0.0
|
=> https://semver.org/spec/v2.0.0.html Semantic versioning standard v2.0.0
|
||||||
|
|
||||||
|
## [3.1.3] - 2021-10-25
|
||||||
|
Thank you to @FoxKyong for contributing to this release.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
* the fix for dual stack listening from 3.1.2 was executed asynchronously and would thus
|
||||||
|
sometimes fail. starting the listeners on different socket addresses is now synchronous
|
||||||
|
|
||||||
## [3.1.2] - 2021-10-15
|
## [3.1.2] - 2021-10-15
|
||||||
Thank you to @etam for contributing to this release.
|
Thank you to @etam for contributing to this release.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue