-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (28 loc) · 945 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
34
35
36
[package]
name = "smart-string"
version = "0.1.4"
license = "MIT/Apache-2.0"
authors = ["Alexander Irbis <[email protected]>"]
description = "A collection of string types and traits designed for enhanced string manipulation."
keywords = ["string", "inline", "display", "no-heap", "optimization"]
categories = [
"data-structures",
# "no-std",
"rust-patterns",
]
readme = "README.md"
homepage = "https://github.com/irbis-labs/smart-string"
repository = "https://github.com/irbis-labs/smart-string"
documentation = "https://docs.rs/smart-string/"
edition = "2021"
[badges]
#travis-ci = { repository = "irbis-labs/smart-string" }
#coveralls = { repository = "irbis-labs/smart-string" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["serde"]
[dependencies]
rustversion = "1"
serde = { version = "1", optional = true }
[dev-dependencies]
serde_json = "1"