fixed Cargo.toml & removed env module import

This commit is contained in:
Emma Tebibyte 2023-03-23 15:44:31 -04:00
parent 76dfb73238
commit 5b35be7425
Signed by: emma
GPG Key ID: 6D661C738815E7DD
3 changed files with 2 additions and 34 deletions

31
Cargo.lock generated
View File

@ -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"

View File

@ -6,15 +6,13 @@ license = "LGPL-3.0-or-later"
authors = [
"Emma Tebibyte <emma@tebibyte.media>",
"Douman <douman@gmx.se>",
"Matt Mastracci <matthew@mastracci.com>",
]
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"

View File

@ -47,7 +47,6 @@
#![no_std]
pub mod entry;
// pub mod env;
mod macros;
pub mod process;