-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (32 loc) · 831 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
[package]
name = "user-sms-registration"
version = "0.1.0"
authors = ["Michael van Niekerk <mvniekerk@chazaqdev.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "user_registration"
path = "src/lib.rs"
[features]
smsportal = []
twilio = []
[dependencies]
rocket = "0.4.4"
tokio = { version = "0.2.14", features = ["full"] }
futures = "0.3.1"
clap = "2.33.0"
log = "0.4.8"
uuid = { version = "0.8.1", features = ["v4"] }
dotenv = "0.15.0"
serde_json = "1.0.50"
serde_derive = "1.0.105"
serde = "1.0.105"
redis = "0.15.1"
chrono = { version = "0.4" }
reqwest = { version = "0.10.4", features = ["json", "blocking"] }
env_logger = "0.7.1"
http = "0.2"
[dependencies.rocket_contrib]
version = "0.4.4"
default-features = false
features = ["json"]