-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (26 loc) · 872 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "discord_time_stamp"
authors = ["FlorianXXIV"]
version = "0.2.6"
description = "A discord bot that prints discord timestamps"
repository = "https://github.com/FlorianXXIV/discord_time_stamp"
edition = "2021"
license = "EUPL-1.2"
readme = "README.md"
documentation = "https://docs.rs/discord_time_stamp"
keywords = ["discord", "bot", "unix-timestamps"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
time = { version = "0.3", default-features=false, features = ["macros", "parsing"] }
serenity = {version="0.11", default-features=false, features=[
"client",
"gateway",
"rustls_backend",
"model",
"framework",
"standard_framework",
"http",
"cache"
]}
tokio = { version="1", default-features=false, features = ["macros", "rt-multi-thread"] }
dotenv = "0.15"