We're going to update the MSRV to 1.90 soon, and we might as well remove the hacks we have in place from bug 1982939 and bug 1995920 for vendoring backwards compatibility early. Differential Revision: https://phabricator.services.mozilla.com/D279628
46 lines
1.1 KiB
TOML
46 lines
1.1 KiB
TOML
[package]
|
|
name = "arraystring"
|
|
version = "0.3.0"
|
|
repository = "https://github.com/paulocsanz/arraystring"
|
|
description = "Fixed capacity stack based generic string"
|
|
authors = ["Paulo Cabral Sanz <paulosanz@poli.ufrj.br>"]
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
keywords = ["string", "generic", "array", "stack", "no_std"]
|
|
categories = ["data-structures"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "arraystring"
|
|
crate_type = ["lib"]
|
|
|
|
[[bench]]
|
|
name = "string"
|
|
harness = false
|
|
|
|
[dev-dependencies]
|
|
inlinable_string = "0.1"
|
|
smallstring = "0.1"
|
|
serde_json = "1.0"
|
|
criterion = "0.2"
|
|
env_logger = "0.5"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
diesel = { version = "1.3", features = ["sqlite", "postgres", "mysql"] }
|
|
|
|
[dependencies]
|
|
typenum = "1"
|
|
log = { version = "0.4", optional = true }
|
|
serde = { version = "1", optional = true }
|
|
diesel = { version = "1", optional = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
logs = ["log"]
|
|
serde-traits = ["serde"]
|
|
diesel-traits = ["diesel"]
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--cfg", "docs_rs_workaraound"]
|
|
features = ["logs", "serde-traits", "std", "diesel-traits"]
|