-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
33 lines (28 loc) · 842 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "cheetah-string"
version = "0.1.5"
authors = ["mxsm <mxsm@apache.org>"]
edition = "2021"
homepage = "https://github.com/mxsm/cheetah-string"
repository = "https://github.com/mxsm/cheetah-string"
license = "MIT OR Apache-2.0"
keywords = ["fast", "fast-string", "bytes", "rust", "rocketmq-rust"]
categories = ["network-programming"]
readme = "README.md"
rust-version = "1.75.0"
description = """
A lightweight, high-performance string manipulation library optimized for speed-sensitive applications
"""
[dependencies]
bytes = "1.8.0"
serde = { version = "1.0", optional = true, default-features = false, features = ["alloc"] }
[features]
default = ["std"]
std = []
serde = ["serde/alloc"]
bytes = []
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "cheetah"
harness = false