-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (49 loc) · 1.66 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "taml"
version = "0.0.11"
authors = ["Tamme Schichler <tamme@schichler.dev>"]
edition = "2018"
description = "A kind-to-humans configuration language."
license = "MIT OR Apache-2.0"
repository = "https://github.com/Tamschi/taml"
homepage = "https://github.com/Tamschi/taml/tree/v0.0.11"
documentation = "https://docs.rs/taml/0.0.11"
keywords = ["structured", "humane", "configuration", "parser"]
categories = ["parser-implementations"]
readme = "README.md"
include = [
"**/*.rs",
"!tests/unincluded_*.rs", # Tests of meta data files not included in the package.
"Cargo.toml",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"COPYRIGHT.md",
"LICENSE-*",
"README.md",
"SECURITY.md",
]
# resolver = "2"
publish = false
[badges]
is-it-maintained-issue-resolution = { repository = "Tamschi/taml" }
is-it-maintained-open-issues = { repository = "Tamschi/taml" }
maintenance = { status = "experimental" }
[dependencies]
cervine = "0.0.6" # public
debugless-unwrap = "0.0.4"
enum_properties = "0.3.0"
gnaw = "0.0.2"
indexmap = "1.6.2" # public #TODO: Preserving the order should be an optional feature.
lazy-transform-str = "0.0.6"
logos = "0.12.0" # public (through trait implementation on Token. Is there a way to not publish this?)
smartstring = "0.2.9" # public
try_match = "0.2.2"
# Minimum version working with try_match starting with Rust 1.47.0.
# SEE: https://github.com/rust-lang/rust/issues/77789, https://github.com/dtolnay/syn/issues/906, https://github.com/dtolnay/syn/releases/tag/1.0.44
syn = { version = "1.0.78", default-features = false }
tap = "1.0.1"
[dev-dependencies]
cargo-husky = "1.5.0"
git_info = "0.1.2"
version-sync = "0.9.3"
wasm-bindgen-test = "0.3.28"