aboutsummaryrefslogtreecommitdiff
path: root/crates/xa65/Cargo.toml
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2025-01-22 15:55:25 +0100
committerMiquel Sabaté Solà <mikisabate@gmail.com>2025-01-22 15:55:25 +0100
commitb4a779f040f18257fde1c357626461ab187490db (patch)
treeff4006cff95e0048a6c2816678a640ca0891fe60 /crates/xa65/Cargo.toml
parente3e54cfee6ebc17281bbbf906ff9035f594313cd (diff)
downloadtools.nes-b4a779f040f18257fde1c357626461ab187490db.tar.gz
tools.nes-b4a779f040f18257fde1c357626461ab187490db.zip
Remove dependency to the rand crate
This dependency was easily avoidable and it brought with it a lot of inner dependencies of its own, most notably 'zerocopy-derive', which forbid us to compile the affected programs purely statically. Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'crates/xa65/Cargo.toml')
-rw-r--r--crates/xa65/Cargo.toml1
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/xa65/Cargo.toml b/crates/xa65/Cargo.toml
index a6696bd..1ecceb0 100644
--- a/crates/xa65/Cargo.toml
+++ b/crates/xa65/Cargo.toml
@@ -6,4 +6,3 @@ authors = ["Miquel Sabaté Solà <mikisabate@gmail.com>"]
[dependencies]
clap = { version = "^4", features = ["derive"] }
-rand = "0.8.5"