-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
53 lines (44 loc) · 1.87 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
46
47
48
49
50
51
52
53
[package]
name = "aqua-container"
version = "1.2.0"
edition = "2021"
description = "Aquachain File Container"
repository = "https://github.com/inblockio/aqua-container"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# use latest main from
axum = { git = "https://github.com/tokio-rs/axum", features = ["multipart"] }
axum-extra = { git = "https://github.com/tokio-rs/axum" }
# verifier = { git = "https://github.com/inblockio/aqua-verifier-rs", branch = "main" }
# aqua-verifier-rs-types = { git = "https://github.com/inblockio/aqua-verifier-rs-types", branch = "main" }
# aqua-verifier-rs-types = { git = "https://github.com/inblockio/aqua-verifier-rs-types", rev = "495735706073f86864ef9a461a80bddc30866f08" }
sha3 = "0.10.8"
futures = "0.3"
serde = "1.0.210"
tokio = { version = "1.0", features = ["full"] }
tokio-util = { version = "0.7", features = ["io"] }
tower = { version = "0.5.1", features = ["util"] }
tower-http = { version = "0.6.1", features = ["fs", "limit", "trace", "cors"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
ethaddr = "0.2.2" # help use etherirum wallet addresses
# rusqlite = "0.32.1" # rust sqlite
# sqlx = { version = "0.8.2", features = ["sqlite", "runtime-tokio-native-tls"] } # used to interacting with sqlite
diesel = { version = "2.2.0", features = ["sqlite", "r2d2", "returning_clauses_for_sqlite_3_35"]}
chrono = {version ="0.4.38", features = ["serde"]}
dotenv = "0.15"
rand = "0.8.5"
ethers = "2.0.14"
# SIWE Sign in
siwe = "0.6.1"
hex = "0.4"
ethers-core = "2.0.14"
#infer file type from base 64 in aqua json file
base64 = "0.22.1"
flagset = { version = "0.4.5", features = ["serde"] }
libsecp256k1 = "0.7.1"
serde_json_path_to_error = "0.1.4"
diesel_migrations = "2.2.0"
aqua-verifier = "1.2.0"
aqua-verifier-rs-types = "1.2.0"