summaryrefslogtreecommitdiff
path: root/winpty
diff options
context:
space:
mode:
authorsterlingjensen <5555776+sterlingjensen@users.noreply.github.com>2019-11-30 00:11:43 -0600
committerChristian Duerr <contact@christianduerr.com>2019-11-30 07:11:43 +0100
commit5f98de46921a878bc13397859eadd7ed4f7c2b44 (patch)
treed68792f98448a52e6816d420856d446c79aae3f5 /winpty
parent0d637a096a53a0b8da2cfb6a8d8a0050cc4f2b34 (diff)
downloadalacritty-5f98de46921a878bc13397859eadd7ed4f7c2b44.tar.gz
alacritty-5f98de46921a878bc13397859eadd7ed4f7c2b44.zip
Move icon embed step from winpty to Alacritty
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() {