diff options
author | Mike Gerwitz <mike.gerwitz@ryansg.com> | 2019-12-01 01:17:37 -0500 |
---|---|---|
committer | Mike Gerwitz <mike.gerwitz@ryansg.com> | 2019-12-02 10:05:48 -0500 |
commit | 8455a38a1d849383bc30569734b5a3907a1d085e (patch) | |
tree | e7affffba23b9072f75358f14b6ffc4bd35bf460 /tamer/Cargo.toml | |
parent | d78d81d721d9eda1ae76c466ec04cc84d3dfea89 (diff) | |
download | tame-8455a38a1d849383bc30569734b5a3907a1d085e.tar.gz tame-8455a38a1d849383bc30569734b5a3907a1d085e.tar.bz2 tame-8455a38a1d849383bc30569734b5a3907a1d085e.zip |
Graph-based POC
This makes use of Petgraph for representing the dependency graph and uses a
separate data structure for both string interning and indexing by symbol
name.
Diffstat (limited to 'tamer/Cargo.toml')
-rw-r--r-- | tamer/Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tamer/Cargo.toml b/tamer/Cargo.toml index 690b348..8d9ebd8 100644 --- a/tamer/Cargo.toml +++ b/tamer/Cargo.toml @@ -17,4 +17,5 @@ opt-level = 3 [dependencies] quick-xml = ">= 0.17.0" petgraph = ">= 0.4.13" - +# used by petgraph +fixedbitset = ">= 0.1" |