mirror of
https://github.com/fafhrd91/actix-net
synced 2024-11-23 22:51:07 +01:00
9ede174e81
Co-authored-by: Yuki Okushi <jtitor@2k36.org>
29 lines
740 B
TOML
29 lines
740 B
TOML
[package]
|
|
name = "bytestring"
|
|
version = "1.2.0"
|
|
authors = [
|
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
|
"Rob Ede <robjtede@icloud.com>",
|
|
]
|
|
description = "An immutable UTF-8 encoded string using Bytes as storage"
|
|
keywords = ["string", "bytes", "utf8", "web", "actix"]
|
|
categories = ["no-std", "web-programming"]
|
|
homepage = "https://actix.rs"
|
|
repository = "https://github.com/actix/actix-net.git"
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "bytestring"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
bytes = { version = "1.2", default-features = false }
|
|
serde = { version = "1.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
ahash = { version = "0.8", default-features = false }
|
|
serde_json = "1.0"
|
|
static_assertions = "1.1"
|
|
rustversion = "1"
|