mirror of
https://github.com/samsonjs/agate.git
synced 2026-03-25 09:05:50 +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/),
|
||||
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
|
||||
Thank you to @etam for contributing to this release.
|
||||
|
||||
|
|
|
|||
10
Cargo.lock
generated
10
Cargo.lock
generated
|
|
@ -4,7 +4,7 @@ version = 3
|
|||
|
||||
[[package]]
|
||||
name = "agate"
|
||||
version = "3.1.2"
|
||||
version = "3.1.3"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"configparser",
|
||||
|
|
@ -90,9 +90,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "configparser"
|
||||
version = "2.1.0"
|
||||
version = "3.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f7201ee416d124d589a820111ba755930df8b75855321a9a1b87312a0597ec8f"
|
||||
checksum = "06821ea598337a8412cf47c5b71c3bc694a7f0aed188ac28b836fab164a2c202"
|
||||
|
||||
[[package]]
|
||||
name = "env_logger"
|
||||
|
|
@ -234,9 +234,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|||
|
||||
[[package]]
|
||||
name = "libc"
|
||||
version = "0.2.104"
|
||||
version = "0.2.105"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7b2f96d100e1cf1929e7719b7edb3b90ab5298072638fccd77be9ce942ecdfce"
|
||||
checksum = "869d572136620d55835903746bcb5cdc54cb2851fd0aeec53220b4bb65ef3013"
|
||||
|
||||
[[package]]
|
||||
name = "log"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "agate"
|
||||
version = "3.1.2"
|
||||
version = "3.1.3"
|
||||
authors = ["Matt Brubeck <mbrubeck@limpet.net>", "Johann150 <johann+agate@qwertqwefsday.eu>"]
|
||||
description = "Very simple server for the Gemini hypertext 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"]
|
||||
|
||||
[dependencies]
|
||||
configparser = "2.0"
|
||||
configparser = "3.0"
|
||||
env_logger = { version = "0.9", default-features = false, features = ["atty", "humantime", "termcolor"] }
|
||||
futures-util = "0.3"
|
||||
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://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
|
||||
Thank you to @etam for contributing to this release.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue