-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (52 loc) · 1.63 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (52 loc) · 1.63 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
55
56
[package]
name = "meesign-server"
version = "0.5.2"
edition = "2021"
[dependencies]
tonic = { version = "0.11", features = ["transport", "tls"] }
tonic-web = "0.11"
prost = "0.12"
tokio = { version = "1.33", features = [
"macros",
"rt-multi-thread",
"time",
"fs",
] }
tokio-stream = "0.1.14"
uuid = { version = "1.4.1", features = ["v4", "fast-rng", "serde"] }
log = "0.4.16"
env_logger = "0.11.3"
hex = "0.4.3"
clap = { version = "3.1.8", features = ["derive"] }
rand = "0.8.5"
tempfile = "3.3.0"
lazy_static = "1.4.0"
openssl = "0.10.60"
sha2 = "0.10.6"
meesign-crypto = { git = "https://github.com/crocs-muni/meesign-crypto", rev = "ccf6b1d", default-features = false, features = ["elgamal-encrypt"] }
diesel = { version = "2.1.0", features = ["postgres", "chrono", "uuid"] }
diesel-derive-enum = { version = "2.1.0", features = ["postgres"] }
diesel-async = { version = "0.4.1", features = ["postgres", "deadpool", "bb8"] }
diesel_migrations = "2.1.0"
deadpool = "0.11.1"
dotenvy = "0.15"
chrono = { version = "0.4.30", features = ["serde"] }
thiserror = "1.0.58"
dashmap = "5.5.3"
jsonwebtoken = "9"
tower-http = { version = "0.4", features = ["cors"] }
futures = "0.3.31"
async-trait = "0.1.80"
serde = "1.0.200"
testcontainers-modules = { version = "0.13.0", features = ["blocking", "postgres"] }
testcontainers = { version = "0.25.0", features = ["reusable-containers"] }
[build-dependencies]
tonic-build = "0.11.0"
[features]
default = ["cli"]
cli = []
# Hacky feature to allow ignoring slower integrations tests
# that are running against a database, see https://stackoverflow.com/a/48585979
db-tests = []
[dev-dependencies]
mockall = "0.14.0"