diff options
author | Griffin Smith <root@gws.fyi> | 2019-07-09T00·58-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2019-07-09T00·58-0400 |
commit | 5af2429ecb5742383cf0798ce23682d316bdb24d (patch) | |
tree | 0fba959d9a5bce5c749c8529b3f2ea7b557c5767 /Cargo.toml | |
parent | 20f1ccb4600b88ac01768e912e6d5837534ca852 (diff) |
Implement a global map of entities
Implement a global map of entities, which allows referencing by either position or ID and updating the positions of existent entities, and put the character in there.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml index a9079b5dde63..58fd93d3f511 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,8 +5,10 @@ authors = ["Griffin Smith <root@gws.fyi>"] edition = "2018" [dependencies] +backtrace = "0.3" clap = {version = "^2.33.0", features = ["yaml"]} config = "*" +downcast-rs = "^1.0.4" itertools = "*" lazy_static = "*" log = "*" |