generated from fastn-stack/fastn-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (28 loc) · 911 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
[workspace]
members = [ "common","email-auth-provider", "mobile-auth-provider"]
resolver = "2"
[profile.release]
lto = true
opt-level = 's'
[workspace.package]
authors = [
"Amit Upadhyay <upadhyay@gmail.com>",
"Arpita Jaiswal <arpita@fifthtry.com>",
"Siddhant Kumar <siddhant@fifthtry.com>",
]
edition = "2021"
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
http = "1"
bytes = "1"
diesel = { version = "2", default-features = false, features = ["chrono"] }
thiserror = "1"
argon2 = "0.5"
chrono = { version = "0.4", default-features = false, features = ["serde"] }
validator = "0.18"
cookie = "0.18"
# ft-sdk = { path = "../ft-sdk/ft-sdk", features = ["sqlite-default", "auth-provider", "field-extractors"] }
ft-sdk = { version = "0.1.17", features = ["sqlite-default", "auth-provider", "field-extractors"] }
regex = "1"
common = { path = "common" }