aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2022-02-24 13:16:08 -0500
committerJesse Luehrs <doy@tozt.net>2022-02-24 13:16:08 -0500
commit9376e24c4a8a5c24e8480695a577e99dd4ba4ae5 (patch)
tree872e6e568d701504192dc2464f441dcaea5e7f20
parent5396669e46f1306d930e5d92748eeb302fccaa9a (diff)
downloadttyrec-bin-9376e24c4a8a5c24e8480695a577e99dd4ba4ae5.tar.gz
ttyrec-bin-9376e24c4a8a5c24e8480695a577e99dd4ba4ae5.zip
move to git deps
-rw-r--r--Cargo.lock4
-rw-r--r--Cargo.toml8
2 files changed, 8 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 2a57c2f..e5ab15a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -168,6 +168,7 @@ dependencies = [
[[package]]
name = "nix"
version = "0.23.1"
+source = "git+https://github.com/nix-rust/nix#6123083a4702002e1958229735a4fd70cb326257"
dependencies = [
"bitflags",
"cfg-if",
@@ -292,6 +293,7 @@ dependencies = [
[[package]]
name = "pty-process"
version = "0.2.0"
+source = "git+https://github.com/doy/pty-process#aca49b2f55df04142d4b2fcfcb361361e76d0820"
dependencies = [
"libc",
"nix",
@@ -412,6 +414,7 @@ dependencies = [
[[package]]
name = "textmode"
version = "0.3.0"
+source = "git+https://github.com/doy/textmode#3df7202f1daf634a49e88dd2ecd8587bade0baeb"
dependencies = [
"itoa",
"nix",
@@ -464,6 +467,7 @@ dependencies = [
[[package]]
name = "ttyrec"
version = "0.3.3"
+source = "git+https://github.com/doy/ttyrec#4f0b0ae8d1e3ff3c3af616e88ee7c51e583743b1"
dependencies = [
"tokio",
]
diff --git a/Cargo.toml b/Cargo.toml
index 7df863a..47665fc 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -25,7 +25,7 @@ ttyrec = { version = "0.3.3", features = ["async"] }
vt100 = "0.15.1"
[patch.crates-io]
-nix = { path = "../src/nix" }
-pty-process = { path = "../pty-process" }
-textmode = { path = "../textmode" }
-ttyrec = { path = "../ttyrec" }
+nix = { git = "https://github.com/nix-rust/nix" }
+pty-process = { git = "https://github.com/doy/pty-process" }
+textmode = { git = "https://github.com/doy/textmode" }
+ttyrec = { git = "https://github.com/doy/ttyrec" }