mirror of
https://github.com/bytedance/g3.git
synced 2026-04-28 03:30:31 +00:00
bump version for binaries and use workspace level MSRV
This commit is contained in:
parent
baf0d0d20a
commit
710d1e302c
16 changed files with 40 additions and 20 deletions
12
Cargo.lock
generated
12
Cargo.lock
generated
|
|
@ -1768,7 +1768,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "g3fcgen"
|
||||
version = "0.8.4"
|
||||
version = "0.9.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"clap",
|
||||
|
|
@ -1791,7 +1791,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "g3iploc"
|
||||
version = "0.3.0"
|
||||
version = "0.4.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"clap",
|
||||
|
|
@ -1811,7 +1811,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "g3keymess"
|
||||
version = "0.4.3"
|
||||
version = "0.5.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"arc-swap",
|
||||
|
|
@ -1890,7 +1890,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "g3proxy"
|
||||
version = "1.12.0"
|
||||
version = "1.13.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
|
|
@ -2032,7 +2032,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "g3statsd"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
|
|
@ -2090,7 +2090,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "g3tiles"
|
||||
version = "0.3.9"
|
||||
version = "0.4.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
|
|
|
|||
|
|
@ -86,6 +86,7 @@ resolver = "3"
|
|||
[workspace.package]
|
||||
license = "Apache-2.0"
|
||||
edition = "2024"
|
||||
rust-version = "1.88.0"
|
||||
|
||||
[workspace.dependencies]
|
||||
#
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ name = "g3bench"
|
|||
version = "0.9.6"
|
||||
license.workspace = true
|
||||
edition.workspace = true
|
||||
rust-version = "1.88.0"
|
||||
rust-version.workspace = true
|
||||
description = "G3 Benchmark Tool"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
|
|
|||
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
v0.9.0:
|
||||
- Compatibility: bump MSRV to 1.88.0
|
||||
|
||||
v0.8.4:
|
||||
- Feature: restore support for aws-lc
|
||||
- Feature: add support for aws-lc-fips
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
[package]
|
||||
name = "g3fcgen"
|
||||
version = "0.8.4"
|
||||
version = "0.9.0"
|
||||
license.workspace = true
|
||||
edition.workspace = true
|
||||
rust-version = "1.88.0"
|
||||
rust-version.workspace = true
|
||||
description = "G3 fake certificate generator"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
|
|
|||
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
v0.4.0:
|
||||
- Compatibility: bump MSRV to 1.88.0
|
||||
|
||||
v0.3.0:
|
||||
- Compatibility: bump MSRV to 1.86.0
|
||||
- Deprecated: the following config options are deprecated:
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
[package]
|
||||
name = "g3iploc"
|
||||
version = "0.3.0"
|
||||
version = "0.4.0"
|
||||
license.workspace = true
|
||||
edition.workspace = true
|
||||
rust-version = "1.88.0"
|
||||
rust-version.workspace = true
|
||||
description = "G3 IP locate service"
|
||||
|
||||
[dependencies]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
v0.5.0:
|
||||
- Compatibility: update MSRV to 1.88.0
|
||||
|
||||
v0.4.4:
|
||||
- Feature: allow to set tcp keepalive on tcp listen socket in server
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
[package]
|
||||
name = "g3keymess"
|
||||
version = "0.4.3"
|
||||
version = "0.5.0"
|
||||
license.workspace = true
|
||||
edition.workspace = true
|
||||
rust-version = "1.88.0"
|
||||
rust-version.workspace = true
|
||||
description = "G3 Keyless Server"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ name = "g3mkcert"
|
|||
version = "0.1.0"
|
||||
license.workspace = true
|
||||
edition.workspace = true
|
||||
rust-version = "1.88.0"
|
||||
rust-version.workspace = true
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
v1.13.0:
|
||||
- Compatibility: bump MSRV to 1.88.0
|
||||
|
||||
v1.12.0:
|
||||
- Feature: allow to connect to ICAP server via UNIX domain socket
|
||||
- Feature: log peer ip when forbidden before connect in escaper
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
[package]
|
||||
name = "g3proxy"
|
||||
version = "1.12.0"
|
||||
version = "1.13.0"
|
||||
license.workspace = true
|
||||
edition.workspace = true
|
||||
rust-version = "1.88.0"
|
||||
rust-version.workspace = true
|
||||
description = "G3 generic proxy"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
|
||||
v0.2.0:
|
||||
- Compatibility: bump MSRV to 1.88.0
|
||||
|
||||
v0.1.1:
|
||||
- Feature: allow to set hop_limit and traffic_class ipv6 socket options
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
[package]
|
||||
name = "g3statsd"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
license.workspace = true
|
||||
edition.workspace = true
|
||||
rust-version = "1.88.0"
|
||||
rust-version.workspace = true
|
||||
description = "G3 StatsD"
|
||||
|
||||
[dependencies]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
v0.4.0:
|
||||
- Compatibility: bump MSRV to 1.88.0
|
||||
|
||||
v0.3.9:
|
||||
- Feature: restore support for aws-lc
|
||||
- Feature: add support for aws-lc-fips
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
[package]
|
||||
name = "g3tiles"
|
||||
version = "0.3.9"
|
||||
version = "0.4.0"
|
||||
license.workspace = true
|
||||
edition.workspace = true
|
||||
rust-version = "1.88.0"
|
||||
rust-version.workspace = true
|
||||
description = "G3 generic reverse proxy"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue