aboutsummaryrefslogtreecommitdiff
path: root/winpty
diff options
context:
space:
mode:
Diffstat (limited to 'winpty')
-rw-r--r--winpty/Cargo.toml1
-rw-r--r--winpty/build.rs4
2 files changed, 0 insertions, 5 deletions
diff --git a/winpty/Cargo.toml b/winpty/Cargo.toml
index edddbb35..9d1b2d27 100644
--- a/winpty/Cargo.toml
+++ b/winpty/Cargo.toml
@@ -16,7 +16,6 @@ named_pipe = "0.4.1"
winapi = { version = "0.3", features = ["winnt", "processthreadsapi"] }
[target.'cfg(windows)'.build-dependencies]
-embed-resource = "1.1.4"
tempfile = "3.0.4"
http_req = "0.5"
zip = "0.5"
diff --git a/winpty/build.rs b/winpty/build.rs
index 925ebf99..0035ce3b 100644
--- a/winpty/build.rs
+++ b/winpty/build.rs
@@ -11,8 +11,6 @@ use std::fs::{copy, File};
use std::path::Path;
#[cfg(windows)]
-use embed_resource;
-#[cfg(windows)]
use http_req;
#[cfg(windows)]
use tempfile;
@@ -26,8 +24,6 @@ const WINPTY_PACKAGE_URL: &str =
fn main() {
#[cfg(windows)]
{
- embed_resource::compile("../extra/windows/windows.rc");
-
// Path is relative to target/{profile}/build/alacritty-HASH/out
let file = Path::new(&env::var("OUT_DIR").unwrap()).join("../../../winpty-agent.exe");
if !file.exists() {