mirror of
https://github.com/j178/prek.git
synced 2026-04-25 02:11:36 +02:00
89e948b5fa
* docs: Set repository on every member * docs: Specify license as MIT `license-file` is meant for custom licenses and not for specifying the text of a standard license. See also - rust-lang/cargo#12053 - rust-lang/cargo#5933 * docs: Specify the license for all packages
14 lines
326 B
TOML
14 lines
326 B
TOML
[package]
|
|
name = "pty"
|
|
version = "0.0.1"
|
|
repository = { workspace = true }
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[dependencies]
|
|
rustix = { version = "1.0.8", features = ["pty", "process", "fs", "termios"] }
|
|
tokio = { version = "1.47.1", features = ["fs", "process", "net"] }
|
|
|
|
[lints]
|
|
workspace = true
|