1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-07-29 10:57:34 +02:00
Files
.cargo
.github
actix-codec
actix-macros
actix-rt
actix-server
actix-service
actix-tls
actix-tracing
actix-utils
bytestring
src
CHANGES.md
Cargo.toml
README.md
local-channel
local-waker
scripts
.envrc
.gitignore
.rustfmt.toml
.taplo.toml
CODE_OF_CONDUCT.md
Cargo.lock
Cargo.toml
LICENSE-APACHE
LICENSE-MIT
README.md
codecov.yml
flake.lock
flake.nix
justfile
actix-net/bytestring/Cargo.toml
2024-12-29 14:27:58 +00:00

28 lines
823 B
TOML

[package]
name = "bytestring"
version = "1.4.0"
description = "A UTF-8 encoded read-only string using `Bytes` as storage"
authors = ["Nikolay Kim <fafhrd91@gmail.com>", "Rob Ede <robjtede@icloud.com>"]
keywords = ["string", "bytes", "utf8", "web", "bytestring"]
categories = ["no-std", "web-programming"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-net"
license = "MIT OR Apache-2.0"
edition.workspace = true
rust-version.workspace = true
[package.metadata.cargo_check_external_types]
allowed_external_types = ["bytes::*", "serde::*"]
[dependencies]
bytes = { version = "1.2", default-features = false }
serde = { version = "1", optional = true }
[dev-dependencies]
ahash = { version = "0.8", default-features = false }
serde_json = "1"
static_assertions = "1.1"
[lints]
workspace = true