sapling/eden/scm/lib/dag/gitdag/Cargo.toml
Jun Wu e5527715b7 gitdag: crate to build segmented dag from git history
Summary:
Read git commit graph and migrate them to `dag::Dag`.

This allows using Rust dag abstractions on the git
commit graph.

Reviewed By: DurhamG

Differential Revision: D23095471

fbshipit-source-id: 2163701350ce82ce6e97074e56ad5877f3c9c158
2020-08-21 13:00:45 -07:00

11 lines
142 B
TOML

[package]
name = "gitdag"
version = "0.1.0"
edition = "2018"
[dependencies]
anyhow = "1"
dag = { path = ".." }
git2 = "0.13"
tracing = "0.1"