1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-22 11:04:21 +00:00
royalnet/Cargo.toml

45 lines
1,014 B
TOML
Raw Normal View History

2024-07-04 01:15:39 +00:00
[package]
name = "royalnet"
2024-07-12 03:05:45 +00:00
description = "Fun software suite for the RYG community"
2024-07-12 03:16:07 +00:00
version = "0.3.2"
2024-07-04 01:15:39 +00:00
edition = "2021"
2024-07-12 03:03:17 +00:00
authors = [
"Stefano Pigozzi <me@steffo.eu>"
]
2024-07-12 03:07:10 +00:00
repository = "https://github.com/RYGhub/royalnet"
2024-07-12 03:03:31 +00:00
rust-version = "1.71.0"
2024-07-12 03:06:22 +00:00
readme = "README.md"
2024-07-12 03:07:31 +00:00
license = "EUPL-1.2"
2024-07-12 03:08:30 +00:00
keywords = [
"bot",
"telegram",
"ryg",
"gaming",
"fun"
]
2024-07-12 03:10:21 +00:00
categories = [
"games",
]
2024-07-12 03:12:43 +00:00
exclude = [
"/.idea",
"/.media",
"/.env"
]
2024-07-04 01:15:39 +00:00
[dependencies]
anyhow = "1.0.86"
2024-07-05 00:06:47 +00:00
chrono = "0.4.38"
2024-07-04 01:15:39 +00:00
diesel = { version = "2.2.1", features = ["postgres"] }
log = { version = "0.4.22", features = ["release_max_level_debug"] }
2024-07-04 01:15:39 +00:00
micronfig = "0.3.0"
pretty_env_logger = "0.5.0"
2024-07-05 00:06:47 +00:00
rand = { version = "0.8.5", features = ["small_rng"] }
2024-07-08 02:15:53 +00:00
teloxide = { version = "0.12.2", features = ["ctrlc_handler", "native-tls", "macros"], default-features = false }
2024-07-11 05:53:51 +00:00
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread", "time"] }
parse_datetime = "0.6.0"
regex = "1.10.5"
once_cell = "1.19.0"
[[bin]]
name = "royalnet"