-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (32 loc) · 812 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
36
37
38
39
[package]
name = "email_newsletter"
version = "0.1.0"
edition = "2021"
authors = ["Fauzan Rindra <[email protected]>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
path = "src/lib.rs"
[[bin]]
name = "email_newsletter"
path = "src/main.rs"
[dependencies]
actix-web = "4"
tokio = { version = "1", features = ["full"] }
tokio-macros = "2.2.0"
serde = { version = "1.0", features = ["derive"] }
config = "0.13"
uuid = { version = "1", features = ["v4"] }
chrono = { version = "0.4.22", default-features = false, features = ["clock"] }
[dependencies.sqlx]
version = "0.7"
default-features = false
features = [
"runtime-tokio-rustls",
"macros",
"postgres",
"uuid",
"chrono",
"migrate",
]
[dev-dependencies]
reqwest = "0.11"