-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (23 loc) · 652 Bytes
/
Cargo.toml
File metadata and controls
28 lines (23 loc) · 652 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "pywinpty"
version = "3.0.4-dev"
authors = ["Edgar Andrés Margffoy Tuay <andfoy@gmail.com>"]
description = "Pseudo terminal support for Windows from Python."
repository = "https://github.com/spyder-ide/pywinpty"
license = "MIT"
keywords = ["pty", "pseudo-terminal", "conpty", "windows", "winpty"]
readme = "README.md"
edition = "2024"
[lib]
name = "winpty"
crate-type = ["cdylib"]
[build-dependencies]
glob = "0.3.2"
[dependencies]
winpty-rs = "1.0.5"
[dependencies.pyo3]
version = "0.27.2"
features = ["extension-module"]
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = ["x86_64-pc-windows-msvc"]