-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
34 lines (29 loc) · 844 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
[package]
name = "tomllib"
version = "0.1.2"
authors = ["Joel Self <self@jself.io>"]
description = "A format-preserving TOML file parser and manipulator"
license = "MIT"
repository = "https://github.com/joelself/tomllib"
readme = "README.md"
documentation = "https://jself.io/rustdocs/tomllib/0.1.1/tomllib/"
keywords = ["toml", "parser", "encode", "decode", "nom"]
exclude = ["assets/*", "tests/*"]
[dependencies.nom]
version = "^1.2.0"
features = ["regexp"]
[dependencies.regex]
version = "^0.1.48"
# Uncomment these, and comment out the regexp feature to turn on statically compiled regexes
#features = ["regexp_macros"]
#[dependencies.regex_macros]
[dependencies.log]
version = "^0.3.5"
[dependencies.env_logger]
version = "^0.3.2"
[dependencies.pirate]
version = "1.0.0"
[dependencies.csv]
version = "0.14.4"
[[bin]]
name = "tomlkit"