mirror of https://github.com/fafhrd91/actix-net
chore(bytestring): prepare release 1.5.0
This commit is contained in:
parent
da9db224c4
commit
d22774f1b7
|
|
@ -2,6 +2,7 @@ version: "0.2"
|
||||||
words:
|
words:
|
||||||
- actix
|
- actix
|
||||||
- addrs
|
- addrs
|
||||||
|
- bytestring
|
||||||
- clippy
|
- clippy
|
||||||
- deque
|
- deque
|
||||||
- itertools
|
- itertools
|
||||||
|
|
@ -13,6 +14,7 @@ words:
|
||||||
- rcgen
|
- rcgen
|
||||||
- Rustls
|
- Rustls
|
||||||
- rustup
|
- rustup
|
||||||
|
- serde
|
||||||
- spki
|
- spki
|
||||||
- uring
|
- uring
|
||||||
- webpki
|
- webpki
|
||||||
|
|
|
||||||
|
|
@ -325,7 +325,7 @@ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bytestring"
|
name = "bytestring"
|
||||||
version = "1.4.0"
|
version = "1.5.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ahash",
|
"ahash",
|
||||||
"bytes",
|
"bytes",
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,9 @@
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## 1.5.0
|
||||||
|
|
||||||
|
- Migrate `serde` dependency to `serde_core`.
|
||||||
- Minimum supported Rust version (MSRV) is now 1.75.
|
- Minimum supported Rust version (MSRV) is now 1.75.
|
||||||
- Switch `serde` to `serde_core`
|
- Switch `serde` to `serde_core`
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bytestring"
|
name = "bytestring"
|
||||||
version = "1.4.0"
|
version = "1.5.0"
|
||||||
description = "A UTF-8 encoded read-only string using `Bytes` as storage"
|
description = "A UTF-8 encoded read-only string using `Bytes` as storage"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Rob Ede <robjtede@icloud.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Rob Ede <robjtede@icloud.com>"]
|
||||||
keywords = ["string", "bytes", "utf8", "web", "bytestring"]
|
keywords = ["string", "bytes", "utf8", "web", "bytestring"]
|
||||||
|
|
@ -14,17 +14,17 @@ rust-version.workspace = true
|
||||||
[package.metadata.cargo_check_external_types]
|
[package.metadata.cargo_check_external_types]
|
||||||
allowed_external_types = ["bytes::*", "serde::*"]
|
allowed_external_types = ["bytes::*", "serde::*"]
|
||||||
|
|
||||||
|
[features]
|
||||||
|
serde = ["dep:serde_core"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bytes = { version = "1.2", default-features = false }
|
bytes = { version = "1.2", default-features = false }
|
||||||
serde_core = { version = "1.0.221", optional = true }
|
serde_core = { version = "1", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ahash = { version = "0.8", default-features = false }
|
ahash = { version = "0.8", default-features = false }
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
static_assertions = "1.1"
|
static_assertions = "1.1"
|
||||||
|
|
||||||
[features]
|
|
||||||
serde = ["dep:serde_core"]
|
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
|
|
||||||
|
|
@ -5,11 +5,11 @@
|
||||||
<!-- prettier-ignore-start -->
|
<!-- prettier-ignore-start -->
|
||||||
|
|
||||||
[](https://crates.io/crates/bytestring)
|
[](https://crates.io/crates/bytestring)
|
||||||
[](https://docs.rs/bytestring/1.4.0)
|
[](https://docs.rs/bytestring/1.5.0)
|
||||||
[](https://blog.rust-lang.org/2021/05/06/Rust-1.52.0.html)
|
[](https://blog.rust-lang.org/2021/05/06/Rust-1.52.0.html)
|
||||||

|

|
||||||
<br />
|
<br />
|
||||||
[](https://deps.rs/crate/bytestring/1.4.0)
|
[](https://deps.rs/crate/bytestring/1.5.0)
|
||||||

|

|
||||||
[](https://discord.gg/NWpN5mmg3x)
|
[](https://discord.gg/NWpN5mmg3x)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue