forked from miam-miam/prse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (27 loc) · 865 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
[workspace]
members = [
".",
"prse-derive",
]
[package]
name = "prse"
version = "1.2.0"
edition = "2021"
rust-version = "1.61.0"
authors = ["miam-miam100 <[email protected]>"]
documentation = "https://docs.rs/prse/"
license = "MIT OR Apache-2.0"
repository = "https://github.com/miam-miam100/prse"
readme = "README.md"
description = "A tiny string parsing utility."
keywords = ["string", "parsing", "format-args", "no-std"]
categories = ["parsing"]
exclude = [".github", "examples", "tests"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
prse-derive = { version = "1.1.1", path="prse-derive", default-features = false }
memchr = { version = "2.7.1", default-features = false }
[features]
std = ["alloc", "prse-derive/std", "memchr/std"]
alloc = ["prse-derive/alloc"]
default = ["std"]