-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (43 loc) · 1.36 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
[package]
name = "lilnouns-bots"
version = "1.3.0-alpha.14"
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.95"
async-trait = "0.1.85"
cfg-if = "1.0.0"
chrono = "0.4.39"
console_error_panic_hook = { version = "0.1.7", optional = true }
ethers = { version = "2.0.14", default-features = false }
getrandom = { version = "0.2.15", features = ["js"] }
graphql_client = { version = "0.14.0", features = ["reqwest"] }
idna = "1.0.0"
log = "0.4.25"
regex = "1.11.1"
reqwest = "0.11.27"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.137"
worker = "0.5.0"
worker-macros = "0.5.0"
tracing = "0.1"
tracing-web = "0.1.3"
tracing-subscriber = { version = "0.3.19", features = ['time', 'json'] }
time = { version = "0.3.37", features = ['wasm-bindgen'] }
[profile.release]
lto = true
strip = true
codegen-units = 1