-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 932 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
[package]
name = "lilnouns-click"
version = "1.0.0-beta.4"
authors = ["Milad Nekofar <milad@nekofar.com>"]
edition = "2021"
description = "A Nounish URL shortener for LilNouns DAO."
repository = "https://github.com/lilnouns/lilnouns-click"
license = "Apache-2.0"
include = ["*.graphql"]
# https://github.com/rustwasm/wasm-pack/issues/1247
[package.metadata.wasm-pack.profile.release]
wasm-opt = false
[lib]
crate-type = ["cdylib"]
[dependencies]
graphql_client = { version = "0.13.0", features = ["reqwest"] }
html-escape = { version = "0.2.13", default-features = false }
html-minifier = { version = "4.0.0", default-features = false }
log = { version = "0.4.20", features = [] }
percent-encoding = "2.3.0"
regex = "1.10.2"
reqwest = "0.11.22"
serde = { version = "1.0.189", features = ["derive"] }
sqids = "0.3.0"
unidecode = "0.3.0"
url = "2.4.1"
worker = "0.0.18"
[profile.release]
lto = true
strip = true
codegen-units = 1