forked from dangush/ponchik-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (28 loc) · 839 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
30
31
32
33
34
35
[package]
name = "ponchik"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11.4", features = ["blocking", "json"] }
serde_json = "1.0.66"
tokio = { version = "1.9.0", features = ["macros", "rt-multi-thread"] }
sqlx = { version = "0.7.3", features = [ "runtime-tokio", "postgres", "tls-native-tls" ] }
rand = "0.8.4"
google-sheets4 = "5.0.3"
serde = { version = "1.0", features = ["derive"] }
dotenv = {version = "*"}
chrono = {version = "*"}
anyhow = "*"
vercel_runtime = { version = "1.1.0" }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
stopwatch = "0.0.7"
[lib]
path = "src/lib.rs"
[[bin]]
name = "interact_handler"
path = "api/interact_handler.rs"
[[bin]]
name = "launcher"
path = "api/launcher.rs"