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

32 lines
791 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"
2021-02-24 21:44:04 +00:00
repository = "https://github.com/Byron/gitoxide"
description = "A git-config file parser and editor from the gitoxide project"
license = "MIT OR Apache-2.0"
2021-02-18 17:49:47 +00:00
authors = ["Edward Shen <code@eddie.sh>"]
edition = "2018"
2021-02-28 04:19:25 +00:00
keywords = ["git-config", "git", "config", "gitoxide"]
categories = ["config", "parser-implementations"]
2021-03-01 23:33:07 +00:00
exclude = ["fuzz/**/*", ".vscode/**/*", "benches/**/*"]
2021-02-18 17:49:47 +00:00
[features]
2021-03-03 23:13:35 +00:00
# serde = ["serde_crate"]
2021-02-18 17:49:47 +00:00
[dependencies]
2021-03-01 21:01:47 +00:00
memchr = "2"
nom = { version = "6", default_features = false, features = ["std"] }
2021-02-28 00:07:50 +00:00
serde_crate = { version = "1", package = "serde", optional = true }
2021-02-24 17:11:18 +00:00
2021-02-19 17:08:42 +00:00
[dev-dependencies]
2021-02-24 17:11:18 +00:00
serde_derive = "1.0"
2021-03-01 23:33:07 +00:00
criterion = "0.3"
2021-02-24 17:11:18 +00:00
[profile.release]
lto = true
2021-03-01 23:33:07 +00:00
codegen-units = 1
[[bench]]
name = "large_config_file"
harness = false