2019-12-07 04:59:39 +01:00
|
|
|
[package]
|
|
|
|
name = "bytestring"
|
2022-06-11 14:41:11 +02:00
|
|
|
version = "1.1.0"
|
2020-12-31 03:20:49 +01:00
|
|
|
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"]
|
2020-12-31 03:20:49 +01:00
|
|
|
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"
|
2020-07-14 12:11:30 +02:00
|
|
|
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 }
|
2020-12-31 03:20:49 +01:00
|
|
|
serde_json = "1.0"
|
2021-11-25 04:29:30 +01:00
|
|
|
static_assertions = "1.1"
|
2021-11-28 02:19:57 +01:00
|
|
|
rustversion = "1"
|