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:
|
||||
- actix
|
||||
- addrs
|
||||
- bytestring
|
||||
- clippy
|
||||
- deque
|
||||
- itertools
|
||||
|
@ -13,6 +14,7 @@ words:
|
|||
- rcgen
|
||||
- Rustls
|
||||
- rustup
|
||||
- serde
|
||||
- spki
|
||||
- uring
|
||||
- webpki
|
||||
|
|
|
@ -325,7 +325,7 @@ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|||
|
||||
[[package]]
|
||||
name = "bytestring"
|
||||
version = "1.4.0"
|
||||
version = "1.5.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"bytes",
|
||||
|
|
|
@ -2,6 +2,9 @@
|
|||
|
||||
## Unreleased
|
||||
|
||||
## 1.5.0
|
||||
|
||||
- Migrate `serde` dependency to `serde_core`.
|
||||
- Minimum supported Rust version (MSRV) is now 1.75.
|
||||
- Switch `serde` to `serde_core`
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "bytestring"
|
||||
version = "1.4.0"
|
||||
version = "1.5.0"
|
||||
description = "A UTF-8 encoded read-only string using `Bytes` as storage"
|
||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Rob Ede <robjtede@icloud.com>"]
|
||||
keywords = ["string", "bytes", "utf8", "web", "bytestring"]
|
||||
|
@ -14,17 +14,17 @@ rust-version.workspace = true
|
|||
[package.metadata.cargo_check_external_types]
|
||||
allowed_external_types = ["bytes::*", "serde::*"]
|
||||
|
||||
[features]
|
||||
serde = ["dep:serde_core"]
|
||||
|
||||
[dependencies]
|
||||
bytes = { version = "1.2", default-features = false }
|
||||
serde_core = { version = "1.0.221", optional = true }
|
||||
serde_core = { version = "1", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
ahash = { version = "0.8", default-features = false }
|
||||
serde_json = "1"
|
||||
static_assertions = "1.1"
|
||||
|
||||
[features]
|
||||
serde = ["dep:serde_core"]
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
|
|
@ -5,11 +5,11 @@
|
|||
<!-- prettier-ignore-start -->
|
||||
|
||||
[](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)
|
||||

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

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