From 89993b65a96854b7c0507a0f053b40e24e476a50 Mon Sep 17 00:00:00 2001 From: tjjfvi Date: Mon, 27 May 2024 17:14:06 -0400 Subject: [PATCH] remove unused deps --- Cargo.lock | 22 ---------------------- Cargo.toml | 2 -- 2 files changed, 24 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b1daa4d7..0832122f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -279,9 +279,7 @@ dependencies = [ "hvm64-util", "insta", "libloading", - "ordered-float", "serial_test", - "thiserror", ] [[package]] @@ -635,26 +633,6 @@ dependencies = [ "unicode-ident", ] -[[package]] -name = "thiserror" -version = "1.0.59" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0126ad08bff79f29fc3ae6a55cc72352056dfff61e3ff8bb7129476d44b23aa" -dependencies = [ - "thiserror-impl", -] - -[[package]] -name = "thiserror-impl" -version = "1.0.59" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1cd413b5d558b4c5bf3680e324a6fa5014e7b7c067a51e69dbdf47eb7148b66" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "unicode-ident" version = "1.0.12" diff --git a/Cargo.toml b/Cargo.toml index ffeb91ab..b787d5fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,8 +35,6 @@ debug = "full" [dependencies] clap = { version = "4.5.4", features = ["derive"] } libloading = { version = "0.8.3", default-features = false } -ordered-float = { version = "4.2.0", default-features = false } -thiserror = "1.0.58" hvm64-ast = { path = "./ast" } hvm64-runtime = { path = "./runtime" }