[package]
edition = "2021"
name = "PyRust"
version = "0.2.0"
authors = ["Твоё Имя <email@example.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Простые инструменты для новичков в Rust (как Python, но быстрее!)"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/ТВОЙ_НИК/PyRust"
[features]
async = [
"dep:tokio",
"dep:reqwest",
"dep:futures",
]
default = ["quick"]
quick = []
[lib]
name = "PyRust"
path = "src/lib.rs"
[dependencies.cfg-if]
version = "1.0"
[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