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

32 lines
791 B
TOML
Raw Normal View History

2021-02-18 09:49:47 -08:00
[package]
2021-02-24 09:11:18 -08:00
name = "git-config"
2021-02-18 09:49:47 -08:00
version = "0.1.0"
2021-02-24 13:44:04 -08: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 09:49:47 -08:00
authors = ["Edward Shen <code@eddie.sh>"]
edition = "2018"
2021-02-27 20:19:25 -08:00
keywords = ["git-config", "git", "config", "gitoxide"]
categories = ["config", "parser-implementations"]
2021-03-01 15:33:07 -08:00
exclude = ["fuzz/**/*", ".vscode/**/*", "benches/**/*"]
2021-02-18 09:49:47 -08:00
[features]
2021-03-03 15:13:35 -08:00
# serde = ["serde_crate"]
2021-02-18 09:49:47 -08:00
[dependencies]
2021-03-01 13:01:47 -08:00
memchr = "2"
nom = { version = "6", default_features = false, features = ["std"] }
2021-02-27 16:07:50 -08:00
serde_crate = { version = "1", package = "serde", optional = true }
2021-02-24 09:11:18 -08:00
2021-02-19 09:08:42 -08:00
[dev-dependencies]
2021-02-24 09:11:18 -08:00
serde_derive = "1.0"
2021-03-01 15:33:07 -08:00
criterion = "0.3"
2021-02-24 09:11:18 -08:00
[profile.release]
lto = true
2021-03-01 15:33:07 -08:00
codegen-units = 1
[[bench]]
name = "large_config_file"
harness = false