-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 798 Bytes
/
Cargo.toml
File metadata and controls
37 lines (31 loc) · 798 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
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "modulite"
version = "0.1.0"
edition = "2021"
authors = ["André Wozniack <andre_fabriciow@hotmail.com>"]
[lib]
path = "src/lib.rs"
name = "modulite"
[dependencies]
actix-web = "4.9.0"
serde = {version = "1.0.208", features = ["derive"]}
serde_json = "1.0.125"
sqlx = { version = "0.8.0", features = ["postgres", "runtime-tokio-native-tls"] }
dotenv = "0.15"
tokio = { version = "1", features = ["full"] }
futures = "0.3.30"
log = "0.4.22"
env_logger = "0.11.5"
bcrypt = "0.15.1"
openssl = "0.10.66"
openssl-sys = "0.9.103"
actix-service = "2.0.2"
jsonwebtoken = "9.3.0"
chrono = "0.4.38"
actix-web-httpauth = "0.8.2"
async-trait = "0.1.82"
apple-signin = "0.1.1"
[dev-dependencies]
reqwest = { version = "0.12.7", features = ["json"] }
mockall = "0.13.0"
actix-rt = "2.5.0"