sapling/eden/scm/edenscmnative/bindings/modules/pyrenderdag/Cargo.toml
Jun Wu a27bf2fc42 pyrenderdag: support non-revision-numbers graph vertexes
Summary:
Change pyrenderdag to accept non-revision-number graph vertexes so it can
render a graph even if the graph does not use revision numbers.

The next diff wants this behavior so it can just emit commit hashes to
the renderer without caring about revision numbers. The type is made
so it can still support revision numbers, since the legacy graphlog
interface would still use revision numbers.

Reviewed By: markbt

Differential Revision: D21554671

fbshipit-source-id: 20572683b831f7cecb03957c83f278ff3903eff0
2020-05-14 12:03:44 -07:00

16 lines
468 B
TOML

[package]
name = "pyrenderdag"
version = "0.1.0"
edition = "2018"
[dependencies]
cpython = { version = "0.5", default-features = false }
cpython-ext = { path = "../../../../lib/cpython-ext", default-features = false }
minibytes = { path = "../../../../lib/minibytes" }
renderdag = { path = "../../../../lib/renderdag" }
parking_lot = "0.9"
[features]
python2 = ["cpython/python27-sys", "cpython-ext/python2"]
python3 = ["cpython/python3-sys", "cpython-ext/python3"]