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

29 lines
702 B
TOML
Raw Normal View History

2019-12-07 04:59:39 +01:00
[package]
name = "bytestring"
version = "1.1.0"
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"Rob Ede <robjtede@icloud.com>",
]
description = "An immutable UTF-8 encoded string using Bytes as storage"
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.git"
license = "MIT OR Apache-2.0"
2019-12-07 04:59:39 +01:00
edition = "2018"
[lib]
2019-12-07 05:15:26 +01:00
name = "bytestring"
2019-12-07 04:59:39 +01:00
path = "src/lib.rs"
[dependencies]
2022-07-23 04:06:44 +02:00
bytes = "1.2"
2020-03-30 07:54:40 +02:00
serde = { version = "1.0", optional = true }
[dev-dependencies]
2021-11-25 04:29:30 +01:00
ahash = { version = "0.7.6", default-features = false }
serde_json = "1.0"
2021-11-25 04:29:30 +01:00
static_assertions = "1.1"
rustversion = "1"