-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (35 loc) · 921 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
40
41
42
43
44
45
46
[package]
name = "clime"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix = "0.13"
actix-web = "4.1"
actix-files = "0.6"
chrono = "0.4"
anyhow = "1.0"
dotenv = "0.15"
log = "0.4"
env_logger = "0.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.11", features = ["json"] }
sqlx = { version = "0.6", features = ["runtime-actix-native-tls", "macros", "chrono", "uuid"] }
jsonwebtoken = "8.1.1"
futures-util = "0.3.21"
uuid = {version = "1.1.2", features = ["v4", "serde"]}
lazy_static = "1.4.0"
rust-argon2 = "1.0"
openweather-api = { path = "./openweather-api" }
rand = "0.8.5"
chrono-tz = "0.6.3"
[features]
default = ["sqlite"]
sqlite = ["sqlx/sqlite"]
postgres = ["sqlx/postgres"]
[workspace]
members = [
"openweather-api",
]