-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (23 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
[package]
name = "posix-space"
version = "1.0.4" # remember to set `html_root_url` in `src/lib.rs`.
authors = ["Ryan Lopopolo <rjl@hyperbo.la>"]
license = "MIT"
edition = "2018"
rust-version = "1.31.0"
readme = "README.md"
repository = "https://github.com/artichoke/posix-space"
documentation = "https://docs.rs/posix-space"
homepage = "https://github.com/artichoke/posix-space"
description = "Pure Rust implementation of `isspace` for the POSIX locale"
keywords = ["isspace", "locale", "posix", "space"]
categories = ["encoding", "no-std", "no-std::no-alloc", "text-processing"]
include = ["src/**/*", "tests/**/*", "LICENSE", "README.md"]
[dependencies]
[dev-dependencies]
[package.metadata.docs.rs]
# This sets the default target to `x86_64-unknown-linux-gnu` and only builds
# that target. `posix-space` has the same API and code on all targets.
default-target = "x86_64-unknown-linux-gnu"
targets = []
rustdoc-args = ["--cfg", "docsrs"]