Skip to content

Commit

Permalink
auto merge of #13749 : pnkfelix/rust/add-libgraphviz-crate, r=alexcri…
Browse files Browse the repository at this point in the history
…chton

Add a `graphviz` crate for making .dot files to layout and render graphs.

(This is a precursor to other work to render control-flow graphs from within rustc itself; but this crate should be independently usable, since it abstracts over the client's graph-representation and labeling method.)
  • Loading branch information
bors committed May 5, 2014
2 parents 8895f25 + 67307d4 commit ecc18f3
Show file tree
Hide file tree
Showing 3 changed files with 889 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mk/crates.mk
Expand Up @@ -51,7 +51,7 @@

TARGET_CRATES := libc std green rustuv native flate arena glob term semver \
uuid serialize sync getopts collections num test time rand \
workcache url log regex
workcache url log regex graphviz
HOST_CRATES := syntax rustc rustdoc fourcc hexfloat regex_macros
CRATES := $(TARGET_CRATES) $(HOST_CRATES)
TOOLS := compiletest rustdoc rustc
Expand All @@ -67,6 +67,7 @@ DEPS_rustdoc := rustc native:sundown serialize sync getopts collections \
test time
DEPS_flate := std native:miniz
DEPS_arena := std collections
DEPS_graphviz := std
DEPS_glob := std
DEPS_serialize := std collections log
DEPS_term := std collections
Expand Down

0 comments on commit ecc18f3

Please sign in to comment.