-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (38 loc) · 1.22 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
[package]
name = "lilnouns-bots"
version = "1.1.0-alpha.6"
authors = ["Milad Nekofar <milad@nekofar.com>"]
edition = "2021"
description = "Our bots are designed to keep the Lil Nouns DAO community informed and engaged."
repository = "https://github.com/lilnouns/lilnouns-bots"
license = "Apache-2.0"
include = ["*.graphql"]
rust-version = "1.72.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# https://github.com/rustwasm/wasm-pack/issues/1247
[package.metadata.wasm-pack.profile.release]
wasm-opt = false
[lib]
crate-type = ["cdylib"]
[features]
default = ["console_error_panic_hook"]
[dependencies]
anyhow = "1.0.75"
async-trait = "0.1.74"
cfg-if = "1.0.0"
chrono = "0.4.31"
console_error_panic_hook = { version = "0.1.7", optional = true }
ethers = { version = "2.0.11", default-features = false }
getrandom = { version = "0.2.11", features = ["js"] }
graphql_client = { version = "0.13.0", features = ["reqwest"] }
log = "0.4.20"
regex = "1.10.2"
reqwest = "0.11.22"
serde = { version = "1.0.192", features = ["derive"] }
serde_json = "1.0.108"
worker = "0.0.18"
worker_logger = { version = "0.2.0", features = ["color"] }
[profile.release]
lto = true
strip = true
codegen-units = 1