Skip to content

Commit 7cf31e5

Browse files
committed
initial commit
0 parents  commit 7cf31e5

27 files changed

+11634
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

Cargo.lock

+336
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
[package]
2+
name = "pars"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
[dependencies]
7+
ascii = { version = "1.1", default-features = false, optional = true }
8+
icu_properties = { version = "1.5", optional = true }
9+
pars-macros = { path = "macros" }
10+
11+
[features]
12+
default = ["alloc"]
13+
alloc = ["ascii?/alloc"]
14+
ascii = ["dep:ascii"]
15+
bytes = []
16+
unicode = ["dep:icu_properties"]
17+
18+
[[example]]
19+
name = "arithmetic"
20+
required-features = ["alloc", "unicode"]
21+
22+
[[example]]
23+
name = "msgpack"
24+
required-features = ["alloc", "bytes"]
25+
26+
[[example]]
27+
name = "msgpack_alt"
28+
required-features = ["alloc", "bytes"]
29+
30+
[workspace]
31+
members = ["macros"]

0 commit comments

Comments
 (0)