fixed Cargo.toml & removed env module import
This commit is contained in:
parent
76dfb73238
commit
5b35be7425
31
Cargo.lock
generated
31
Cargo.lock
generated
@ -20,7 +20,7 @@ dependencies = [
|
|||||||
"regex",
|
"regex",
|
||||||
"rustc-hash",
|
"rustc-hash",
|
||||||
"shlex",
|
"shlex",
|
||||||
"syn 1.0.109",
|
"syn",
|
||||||
"which",
|
"which",
|
||||||
]
|
]
|
||||||
|
|
||||||
@ -190,9 +190,6 @@ version = "0.0.1"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"bindgen",
|
"bindgen",
|
||||||
"libc",
|
"libc",
|
||||||
"quote",
|
|
||||||
"syn 2.0.8",
|
|
||||||
"tabwriter",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -206,38 +203,12 @@ dependencies = [
|
|||||||
"unicode-ident",
|
"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]]
|
[[package]]
|
||||||
name = "unicode-ident"
|
name = "unicode-ident"
|
||||||
version = "1.0.8"
|
version = "1.0.8"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
|
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "unicode-width"
|
|
||||||
version = "0.1.10"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "which"
|
name = "which"
|
||||||
version = "4.4.0"
|
version = "4.4.0"
|
||||||
|
@ -6,15 +6,13 @@ license = "LGPL-3.0-or-later"
|
|||||||
authors = [
|
authors = [
|
||||||
"Emma Tebibyte <emma@tebibyte.media>",
|
"Emma Tebibyte <emma@tebibyte.media>",
|
||||||
"Douman <douman@gmx.se>",
|
"Douman <douman@gmx.se>",
|
||||||
|
"Matt Mastracci <matthew@mastracci.com>",
|
||||||
]
|
]
|
||||||
description ="Minimal standard library replacement containing essential functionality."
|
description ="Minimal standard library replacement containing essential functionality."
|
||||||
repository = "https://git.tebibyte.media/emma/spd"
|
repository = "https://git.tebibyte.media/emma/spd"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libc = "0.2.140"
|
libc = "0.2.140"
|
||||||
quote = "1.0.26"
|
|
||||||
syn = { version = "2.0.8", features = [ "extra-traits" ] }
|
|
||||||
tabwriter = "1.2.1"
|
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
bindgen = "0.64.0"
|
bindgen = "0.64.0"
|
||||||
|
@ -47,7 +47,6 @@
|
|||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
pub mod entry;
|
pub mod entry;
|
||||||
// pub mod env;
|
|
||||||
mod macros;
|
mod macros;
|
||||||
pub mod process;
|
pub mod process;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user