-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (32 loc) · 966 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
32
33
34
35
36
37
38
[package]
name = "xparse"
version.workspace = true
authors.workspace = true
description.workspace = true
readme.workspace = true
repository.workspace = true
homepage.workspace = true
license-file.workspace = true
edition = "2021"
[features]
default = ["macros"]
full = ["async", "macros"]
macros = ["dep:xparse-macros"]
async = ["futures-core", "xparse-macros?/async"]
[dependencies]
xparse-macros = { path = "macros", optional = true }
thiserror-no-std = "2.0"
futures-core = { version = "0.3", optional = true }
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
[workspace]
members = []
resolver = "2"
[workspace.package]
version = "0.1.0"
authors = ["Alsein Xiang <xyh951115@live.com>"]
description = "A parser combinator that is fully statically dispatched and supports both sync & async parsing."
readme = "README.md"
repository = "https://github.com/AlseinX/xparse"
homepage = "https://github.com/AlseinX/xparse"
license-file = "LICENSE"