forked from andfoy/pywinpty
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
35 lines (29 loc) · 854 Bytes
/
Cargo.toml
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
29
30
31
32
33
34
35
[package]
name = "pywinpty"
version = "1.2.0-dev0"
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 = "2018"
links = "winpty"
[lib]
name = "winpty"
crate-type = ["cdylib"]
[dependencies]
libc = "0.2.81"
cxx = "1.0.45"
[dependencies.pyo3]
version = "0.14.1"
features = ["extension-module"]
[build-dependencies]
cxx-build = {version = "1.0.45", features = ["parallel"]}
pywinpty_findlib = { version = "=0.3.0", path = "findlib" }
which = "4.1.0"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = ["x86_64-pc-windows-msvc"]
[package.metadata.maturin]
requires-python = ">=3.6"