-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (25 loc) · 808 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
[package]
name = "notes-reminder"
version = "0.1.0"
edition = "2021"
[profile.release]
opt-level = 3
lto = "fat"
[dependencies]
sqlx = { version = "0.8", features = [ "runtime-tokio-rustls", "postgres", "uuid", "chrono" ] }
tokio = { version = "1.39", features = ["full"] }
sqlx-cli = { version = "0.8", default-features=false, features = [ "rustls", "postgres" ] }
serde_json = "1"
chrono = "0.4"
serde = {version = "1", features = [ "derive" ] }
rand = "0.8"
uuid = { version = "1.10", features = ["v4", "v7"] }
regex = "1.10"
teloxide = { version="0.13", default-features=false, features = [ "rustls", "ctrlc_handler" ]}
log = "0.4"
env_logger = "0.11"
hyper = { version = "0.14", default-features=false, features = [ "client", "http1" ]}
signal-hook = "0.3"
[[bin]]
name = "app"
path = "src/main.rs"