summaryrefslogtreecommitdiff
path: root/lib/libgfold/Cargo.toml
blob: 7b1c183e990d9c088458f9c1c63e228385c1b0a0 (plain)
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
[package]
name = "libgfold"
version = "0.1.0"
edition = "2021"

# NOTE(nick): Temporary until libgfold is ready for release
publish = false

# TODO(nick): add categories and description
authors = ["Nick Gerace <nickagerace@gmail.com>"]
homepage = "https://nickgerace.dev"
keywords = ["git"]
license = "Apache-2.0"
readme = "../../README.md"
repository = "https://github.com/nickgerace/gfold/"

[dependencies]
anyhow = { workspace = true }
log = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }

git2 = { version = "0.17", default_features = false }
rayon = "1.7"

[dev-dependencies]
env_logger = { version = "0.10", features = ["humantime"], default_features = false }
pretty_assertions = "1.3"
tempfile = "3.5"