-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (39 loc) · 1.36 KB
/
Cargo.toml
File metadata and controls
41 lines (39 loc) · 1.36 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
[package]
name = "findex_cloud"
version = "0.1.0"
edition = "2021"
[features]
default = ["rocksdb", "sqlite"]
multitenant = ["alcoholic_jwt", "reqwest"]
log_requests = ["base64"]
lmmd = ["dep:heed"]
rocksdb = ["dep:rocksdb"]
sqlite = ["sqlx"]
dynamodb = ["aws-sdk-dynamodb", "aws-config", "aws-smithy-http"]
[dependencies]
actix-cors = "0.6.4"
actix-files = "0.6.2"
actix-web = "4.2.1"
actix-web-httpauth = "0.8.0"
alcoholic_jwt = { version = "4091.0.0", optional = true }
chrono = { version = "0.4.23", features = ["serde"] }
cosmian_crypto_core = "9.0.1"
cosmian_findex = "4.0.3"
cloudproof_findex = { version = "4.0.2", features = ["cloud"] }
dotenv = "0.15.0"
env_logger = "0.10.0"
futures = "0.3.26"
log = "0.4.17"
rand = "0.8.5"
reqwest = { version = "0.11.14", features = ["json"], optional = true }
serde = { version = "1.0.152", features = ["serde_derive"] }
serde_json = "1.0.91"
sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "sqlite", "chrono"], optional = true }
tokio = "1.25.0"
rocksdb = { version = "0.21.0", features = ["multi-threaded-cf"], optional = true }
base64 = { version = "0.21.0", optional = true }
heed = { version = "0.11.0", optional = true }
async-trait = "0.1.68"
aws-sdk-dynamodb = { version = "0.28.0", optional = true }
aws-config = { version = "0.55.3", optional = true }
aws-smithy-http = { version = "0.55.3", optional = true }