2019-12-07 04:59:39 +01:00
|
|
|
[package]
|
|
|
|
name = "bytestring"
|
2020-03-30 07:54:40 +02:00
|
|
|
version = "0.1.5"
|
2019-12-07 04:59:39 +01:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
|
|
|
description = "A UTF-8 encoded string with Bytes as a storage"
|
|
|
|
keywords = ["actix"]
|
|
|
|
homepage = "https://actix.rs"
|
|
|
|
repository = "https://github.com/actix/actix-net.git"
|
|
|
|
documentation = "https://docs.rs/bytestring/"
|
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]
|
2019-12-22 13:24:28 +01:00
|
|
|
bytes = "0.5.3"
|
2020-03-30 07:54:40 +02:00
|
|
|
serde = { version = "1.0", optional = true }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
serde_json = "1.0"
|