File: Cargo.toml.orig

package info (click to toggle)
rust-uncased 0.9.6-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 148 kB
  • sloc: makefile: 4
file content (24 lines) | stat: -rw-r--r-- 731 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "uncased"
version = "0.9.6"
authors = ["Sergio Benitez <sb@sergio.bz>"]
edition = "2018"
description = "Case-preserving, ASCII case-insensitive, no_std string types."
documentation = "https://docs.rs/uncased/0.9"
repository = "https://github.com/SergioBenitez/uncased"
readme = "README.md"
keywords = ["ascii", "uncased", "case-preserving", "case-insensitive", "no_std"]
license = "MIT OR Apache-2.0"
categories = ["text-processing", "value-formatting", "no-std"]

[features]
default = ["alloc"]
alloc = []
with-serde = ["serde"]
with-serde-alloc = ["serde", "serde/alloc", "alloc"]

[dependencies]
serde = { version = "1.0", default-features = false, optional = true }

[build-dependencies]
version_check = "0.9"