Files
ftmemsim/Cargo.toml
Filipe Rodrigues 8fe8d46fc5 Started work on graphs.
Added a `run.sh` script for a sample on how to run the project.

Currently only a page location graph can be created.
2023-05-24 04:38:04 +01:00

25 lines
577 B
TOML

[workspace]
members = ["ftmemsim", "ftmemsim-util", "ftmemsim-graphs"]
[workspace.dependencies]
anyhow = "1.0.71"
average = "0.13.1"
byteorder = "1.4.3"
clap = { version = "4.2.7", features = ["derive"] }
extend = "1.2.0"
itertools = "0.10.5"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
plotlib = "0.5.1"
# Workspace members
ftmemsim = { path = "ftmemsim" }
ftmemsim-util = { path = "ftmemsim-util" }
ftmemsim-graphs = { path = "ftmemsim-graphs" }