[package]
edition = "2021"
name = "PyRust"
version = "0.5.0"
authors = ["Твоё Имя <email@example.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Простые инструменты для новичков: ввод, таймеры, случайности, файлы, цветной текст, очистка ввода"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/ТВОЙ_НИК/PyRust"
[features]
async = [
"dep:tokio",
"dep:reqwest",
"dep:futures",
]
crossterm = ["dep:crossterm"]
default = [
"quick",
"crossterm",
]
quick = []
[lib]
name = "PyRust"
path = "src/lib.rs"
[[bin]]
name = "PyRust"
path = "src/main.rs"
[dependencies.cfg-if]
version = "1.0"
[dependencies.crossterm]
version = "0.27"
optional = true
[dependencies.futures]
version = "0.3"
optional = true
[dependencies.rand]
version = "0.8"
[dependencies.reqwest]
version = "0.11"
features = [
"json",
"blocking",
]
optional = true
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.0"
features = [
"time",
"rt",
]
optional = true