Skip to content

Commit cec88c8

Browse files
committed
Remove the rust _subprocess module
1 parent b1c3679 commit cec88c8

File tree

4 files changed

+0
-310
lines changed

4 files changed

+0
-310
lines changed

Cargo.lock

Lines changed: 0 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vm/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ uname = "0.1.1"
101101
crc32fast = "1.2.0"
102102
adler32 = "1.0.3"
103103
gethostname = "0.2.0"
104-
subprocess = "0.2.2"
105104
socket2 = "0.3"
106105
rustyline = "6.0"
107106
openssl = { version = "0.10", features = ["vendored"], optional = true }

vm/src/stdlib/mod.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@ mod select;
5959
pub mod signal;
6060
#[cfg(all(not(target_arch = "wasm32"), feature = "ssl"))]
6161
mod ssl;
62-
#[cfg(not(target_arch = "wasm32"))]
63-
mod subprocess;
6462
#[cfg(windows)]
6563
mod winapi;
6664
#[cfg(windows)]
@@ -131,7 +129,6 @@ pub fn get_module_inits() -> HashMap<String, StdlibInitFunc> {
131129
modules.insert("select".to_owned(), Box::new(select::make_module));
132130
#[cfg(feature = "ssl")]
133131
modules.insert("_ssl".to_owned(), Box::new(ssl::make_module));
134-
modules.insert("_subprocess".to_owned(), Box::new(subprocess::make_module));
135132
modules.insert("_thread".to_owned(), Box::new(thread::make_module));
136133
#[cfg(not(target_os = "redox"))]
137134
modules.insert("zlib".to_owned(), Box::new(zlib::make_module));

vm/src/stdlib/subprocess.rs

Lines changed: 0 additions & 295 deletions
This file was deleted.

0 commit comments

Comments
 (0)