This repository has been archived on 2021-03-14. You can view files and clone it, but cannot push or open issues/pull-requests.
git-config/Cargo.toml

23 lines
461 B
TOML
Raw Normal View History

2021-02-18 17:49:47 +00:00
[package]
2021-02-24 17:11:18 +00:00
name = "git-config"
2021-02-18 17:49:47 +00:00
version = "0.1.0"
authors = ["Edward Shen <code@eddie.sh>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-02-24 17:30:49 +00:00
nom = { version = "6", default_features = false, features = ["std"] }
2021-02-24 00:47:24 +00:00
bstr = "0.2.15"
2021-02-18 17:49:47 +00:00
2021-02-24 17:11:18 +00:00
[dependencies.serde_crate]
package = "serde"
optional = true
version = " 1"
2021-02-19 17:08:42 +00:00
[dev-dependencies]
2021-02-24 17:11:18 +00:00
serde_derive = "1.0"
[features]
serde = ["serde_crate"]