-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (50 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
54 lines (50 loc) · 1.19 KB
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
47
48
49
50
51
52
53
54
[package]
name = "api_server"
version = "0.0.1"
build = "src/build.rs"
edition = "2021"
authors = [
'Alexander Manich',
'Ali Khorami',
'Anders Sørensen',
'Emil Laursen',
'Mads Risager',
'Mike Jensen',
'Mikkel Jensen',
'Rasmus Nielsen',
'Simon Bejer',
'Thorbjørn Møller',
'Viktor Platz',
'William Woldum'
]
[[bin]]
name = "server"
path = "src/main.rs"
[dependencies]
migration = { path = "migration" }
tokio = { version = "1.33.0", features = ["full"] }
dotenv = "0.15.0"
sea-orm = { version = "^0.12.0", features = ["sqlx-postgres", "runtime-async-std-native-tls", "macros", "tests-cfg", "sqlx-sqlite"] }
async-trait = { version = "0.1.73", features = [] }
futures = "0.3.28"
tonic = "0.10.2"
prost = "0.12.1"
log = "0.4.20"
jsonwebtoken = "9.1.0"
serde = "1.0.189"
chrono = "0.4.31"
uuid = { version = "1.5.0", features = ["v4"] }
regex = "1.10.2"
mockall = "0.11.4"
bcrypt = "0.15.0"
serde_json = "1.0.108"
ecdar_api_macros = { version = "0.1.0", path = "ecdar_api_macros" }
thiserror = "1.0.50"
[build-dependencies]
tonic-build = "0.10.2"
[lints.clippy]
complexity = "deny"
correctness = "deny"
perf = "deny"
suspicious = "warn"
enum_variant_names = "allow"