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

[package]
name = "git-config"
version = "0.1.0"
repository = "https://github.com/Byron/gitoxide"
description = "A git-config file parser and editor from the gitoxide project"
license = "MIT OR Apache-2.0"
authors = ["Edward Shen <code@eddie.sh>"]
edition = "2018"
keywords = ["git-config", "git", "config", "gitoxide"]
categories = ["config", "parser-implementations"]
exclude = ["fuzz/**/*", ".vscode/**/*", "benches/**/*"]
[features]
# serde = ["serde_crate"]
[dependencies]
memchr = "2"
nom = { version = "6", default_features = false, features = ["std"] }
serde_crate = { version = "1", package = "serde", optional = true }
[dev-dependencies]
serde_derive = "1.0"
criterion = "0.3"
[profile.release]
lto = true
codegen-units = 1
[[bench]]
name = "large_config_file"
harness = false