-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (40 loc) · 1.14 KB
/
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
[package]
name = "backend"
version = "0.1.0"
authors = ["jhaboic <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# async-graphql = "3.0.7"
actix = "0.12.0"
actix-cors = "0.5.4"
actix-files = "0.5.0"
actix-http = "2.2.1"
actix-session = "0.4.1"
actix-web = "3.3.3"
futures = "0.3.17"
futures-channel = "0.3.13"
futures-util = { version = "0.3.17", default-features = false }
http = "0.2.5"
jsonrpc_v2_client = "0.2.0"
jsonwebtoken = "7.2.0"
lazy_static = "1.4.0"
log = "0.4.14"
log4rs = "1.0.0"
serde = { version = "1.0.130", features = ["derive"] }
serde_derive = "1.0.130"
serde_json = "1.0.68"
serde_urlencoded = "0.7.0"
sqlx = {version = "0.5.7", features = ["runtime-async-std-native-tls", "postgres", "migrate", "json", "sqlite"]} # runtime-actix-rustls, runtime-actix-native-tls
tera = {version="1.15.0", features=["builtins"]}
# SERVICES
math_service = {path = "./services/math"}
auth_service = {path = "./services/auth"}
[dev-dependencies]
actix-rt = "2.3.0"
actix-test = "0.0.1"
[workspace]
members = [
"./services/math",
"./services/auth",
]