From 5b35be7425dea6e56f08869eba7746d65841f3ca Mon Sep 17 00:00:00 2001 From: emma Date: Thu, 23 Mar 2023 15:44:31 -0400 Subject: [PATCH] fixed Cargo.toml & removed env module import --- Cargo.lock | 31 +------------------------------ Cargo.toml | 4 +--- src/lib.rs | 1 - 3 files changed, 2 insertions(+), 34 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c93e74f..5d3508d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -20,7 +20,7 @@ dependencies = [ "regex", "rustc-hash", "shlex", - "syn 1.0.109", + "syn", "which", ] @@ -190,9 +190,6 @@ version = "0.0.1" dependencies = [ "bindgen", "libc", - "quote", - "syn 2.0.8", - "tabwriter", ] [[package]] @@ -206,38 +203,12 @@ dependencies = [ "unicode-ident", ] -[[package]] -name = "syn" -version = "2.0.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcc02725fd69ab9f26eab07fad303e2497fad6fb9eba4f96c4d1687bdf704ad9" -dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", -] - -[[package]] -name = "tabwriter" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36205cfc997faadcc4b0b87aaef3fbedafe20d38d4959a7ca6ff803564051111" -dependencies = [ - "unicode-width", -] - [[package]] name = "unicode-ident" version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" -[[package]] -name = "unicode-width" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" - [[package]] name = "which" version = "4.4.0" diff --git a/Cargo.toml b/Cargo.toml index 364501d..328dc10 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,15 +6,13 @@ license = "LGPL-3.0-or-later" authors = [ "Emma Tebibyte ", "Douman ", + "Matt Mastracci ", ] description ="Minimal standard library replacement containing essential functionality." repository = "https://git.tebibyte.media/emma/spd" [dependencies] libc = "0.2.140" -quote = "1.0.26" -syn = { version = "2.0.8", features = [ "extra-traits" ] } -tabwriter = "1.2.1" [build-dependencies] bindgen = "0.64.0" diff --git a/src/lib.rs b/src/lib.rs index 5b3a413..2f103a5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -47,7 +47,6 @@ #![no_std] pub mod entry; -// pub mod env; mod macros; pub mod process;