-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
124 lines (110 loc) · 3.52 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[workspace.package]
version = "1.0.0"
edition = "2021"
license = "MIT"
homepage = "https://gemwallet.com/"
description = "Gem Wallet Core library in Rust"
repository = "https://github.com/gemwalletcom/core"
documentation = "https://github.com/gemwalletcom"
[workspace]
resolver = "2"
members = [
"apps/api",
"apps/daemon",
"apps/parser",
"apps/setup",
"bin/img-downloader",
"bin/generate",
"bin/uniffi-bindgen",
"gemstone",
"crates/primitives",
"crates/blockchain",
"crates/fiat",
"crates/cacher",
"crates/name_resolver",
"crates/api_connector",
"crates/settings",
"crates/settings_chain",
"crates/pricer",
"crates/chain_primitives",
"crates/security_*",
"crates/gem_*",
"crates/localizer",
"crates/job_runner",
"crates/search_index",
"crates/nft"
]
default-members = [
"apps/api",
"apps/daemon",
"apps/parser",
"apps/setup",
"bin/generate",
"gemstone",
]
[workspace.dependencies]
typeshare = "1.0.3"
serde = { version = "1.0.196", features = ["derive"] }
serde_json = { version = "1.0.114" }
serde_urlencoded = { version = "0.7.1" }
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
reqwest = { version = "0.12.3", features = ["json"] }
reqwest-middleware = { version = "0.3.0" }
reqwest-retry = { version = "0.5.0" }
reqwest-enum = { version = "0.3.0", features = ["jsonrpc"] }
url = { version = "2.5.0" }
urlencoding = { version = "2.1.3" }
config = { version = "0.14.0", features = ["yaml"] }
rocket = { version = "0.5.0", features = ["json"] }
async-trait = { version = "0.1.77" }
async-std = { version = "1.13.0" }
prometheus-client = { version = "0.22.1" }
futures = { version = "0.3.30" }
thiserror = { version = "1.0.69" }
anyhow = { version = "1.0" }
indexmap = "2.2.2"
lazy_static = "1.4.0"
futures-util = "0.3.30"
uuid = { version = "1.8.0", features = ["v4"] }
rand = { version = "0.8.5" }
aws-sdk-s3 = { version = "1.5", features = ["behavior-version-latest"] }
# db
diesel = { version = "2.2.3", features = ["postgres", "chrono", "serde_json"] }
diesel_migrations = { version = "2.2.0" }
redis = { version = "0.25.0", features = ["tokio-comp", "json"] }
chrono = { version = "0.4.34", features = ["serde"] }
clickhouse = { version = "0.11.6" }
meilisearch-sdk = { version = "0.27.1" }
# crypto
base64 = { version = "0.22.0" }
blake2 = "0.10.6"
bech32 = { version = "0.11.0" }
bs58 = { version = "0.5.0", features = ["check"] }
hex = { version = "0.4.3" }
num-bigint = { version = "0.4.4", features = ["std", "serde"] }
num-traits = { version = "0.2.18" }
bigdecimal = "0.4"
cosmos-sdk-proto = { version = "0.21.1" }
hmac = { version = "0.12.1" }
sha2 = { version = "0.10.8" }
strum = { version = "0.26.1", features = ["derive"] }
strum_macros = "0.26.1"
jsonrpsee = { version = "0.22.1", features = ["http-client"] }
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
itoa = { version = "1.0.10" }
curve25519-dalek = { version = "4.1.3" }
borsh = { version = "1.5.3", features = ["derive"] }
uniffi = { version = "0.28.3" }
uniffi_bindgen = { version = "0.28.3" }
alloy-core = { version = "0.8.9", features = ["sol-types", "json-abi", "rlp"] }
alloy-primitives = "0.8.9"
alloy-sol-types = "0.8.9"
# localizer
i18n-embed = { version = "0.15.0", features = ["fluent-system", "autoreload"] }
i18n-embed-fl = { version = "0.9.1" }
once_cell = { version = "1.19.0" }
rust-embed = { version = "8.5.0" }
# numbers
rusty-money = { git = "https://github.com/varunsrin/rusty_money.git", rev = "bbc0150", features = [
"iso",
] }