Upload spectral-pty/Cargo.toml
Browse files- spectral-pty/Cargo.toml +11 -0
spectral-pty/Cargo.toml
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[package]
|
| 2 |
+
name = "spectral-pty"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
edition = "2021"
|
| 5 |
+
|
| 6 |
+
[dependencies]
|
| 7 |
+
libc = "0.2"
|
| 8 |
+
log = "0.4"
|
| 9 |
+
|
| 10 |
+
[target.'cfg(windows)'.dependencies]
|
| 11 |
+
windows-sys = { version = "0.59", features = ["Win32_System_Threading", "Win32_Foundation", "Win32_Security"] }
|