PyRust 0.5.0

Простые инструменты для новичков: ввод, таймеры, случайности, файлы, цветной текст, очистка ввода
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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