-
Notifications
You must be signed in to change notification settings - Fork 107
/
Cargo.toml
39 lines (36 loc) · 922 Bytes
/
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
[package]
name = "momoka"
version = "1.1.0"
edition = "2021"
authors = ["Josh Stevens <[email protected]>"]
description = "The momoka rs client"
license = "MIT"
repository = "https://github.com/lens-protocol/momoka"
[dependencies]
tokio = { version = "1", features = ["full"] }
serde_json = "1.0"
gql_client = "1.0.7"
reqwest = "0.11.4"
serde = { version = "1.0", features = ["derive"] }
base64 = "0.21.0"
ethers = "2.0.4"
clap = { version = "4.2.5", features = ["derive"] }
futures = "0.3"
async-trait = "0.1.51"
lazy_static = "1.4.0"
bundlr-sdk = "0.4.1"
regex = "1.5"
json = "0.12"
chrono = "0.4"
strum = "0.24.1"
strum_macros = "0.24.3"
data-encoding = "2.3.0"
uuid = { version = "1.3.2", features = ["v4", "serde"] }
hex = "0.4.3"
[profile.performance]
inherits = "release"
lto = "fat"
codegen-units = 1
incremental = false
[target.'cfg(all(not(windows), not(target_env = "musl")))'.dependencies]
jemallocator = "0.5.0"