1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-31 03:42:08 +01:00
actix-net/bytestring/Cargo.toml

28 lines
823 B
TOML
Raw Normal View History

2019-12-07 09:59:39 +06:00
[package]
name = "bytestring"
version = "1.4.0"
description = "A UTF-8 encoded read-only string using `Bytes` as storage"
2024-12-29 14:27:56 +00:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Rob Ede <robjtede@icloud.com>"]
keywords = ["string", "bytes", "utf8", "web", "bytestring"]
categories = ["no-std", "web-programming"]
2019-12-07 09:59:39 +06:00
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-net"
license = "MIT OR Apache-2.0"
2023-07-17 03:05:39 +01:00
edition.workspace = true
rust-version.workspace = true
2019-12-07 09:59:39 +06:00
[package.metadata.cargo_check_external_types]
2024-12-29 14:27:56 +00:00
allowed_external_types = ["bytes::*", "serde::*"]
2019-12-07 09:59:39 +06:00
[dependencies]
bytes = { version = "1.2", default-features = false }
2024-06-20 01:25:17 +01:00
serde = { version = "1", optional = true }
2020-03-30 11:54:40 +06:00
[dev-dependencies]
2022-10-21 03:23:40 +01:00
ahash = { version = "0.8", default-features = false }
2024-06-20 01:25:17 +01:00
serde_json = "1"
2021-11-25 03:29:30 +00:00
static_assertions = "1.1"
2024-12-29 14:27:56 +00:00
[lints]
workspace = true