-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 764 Bytes
/
Cargo.toml
File metadata and controls
24 lines (22 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "worklog"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "^4.8.0"
derive_more = "^0.99.18"
chrono = { version = "^0.4.38", features = ["serde"] }
diesel = { version = "^2.2.1", features = ["sqlite", "returning_clauses_for_sqlite_3_35", "r2d2", "chrono"] }
serde = { version = "^1.0.203", features = ["derive"] }
reqwest = { version = "^0.12.5", features = ["json"] }
iso8601-duration = {version = "^0.2.0", features = ["chrono", "serde"]}
serde_json = "^1.0.117"
dotenv = "^0.15.0"
env_logger = "^0.11.3"
oauth2 = "^4.4.2"
jsonwebtoken = "^9.3.0"
futures = "^0.3.30"
rand = "^0.8.5"
actix-cors = "^0.7.0"
diesel_migrations = "^2.2.0"