1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-23 20:51:06 +01:00
actix-net/bytestring/Cargo.toml

31 lines
814 B
TOML
Raw Normal View History

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