-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (42 loc) · 1.23 KB
/
Copy pathCargo.toml
File metadata and controls
48 lines (42 loc) · 1.23 KB
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
[package]
name = "concierge"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[dependencies]
worker = { version = "0.7", features = ["d1", "queue"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
console_error_panic_hook = "0.1"
getrandom = { version = "0.2", features = ["js"] }
uuid = { version = "1", features = ["v4", "js"] }
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
js-sys = "0.3"
web-sys = { version = "0.3", features = ["Crypto", "SubtleCrypto", "CryptoKey", "ReadableStream", "Response"] }
urlencoding = "2"
sha2 = "0.10"
hmac = "0.12"
mail-parser = "0.11"
base64 = "0.22"
subtle = "2.6"
futures = "0.3"
botrelay = "0.1"
# Localization: icu4x for number/currency/date formatting; unic-langid for
# BCP-47 tag handling; accept-language for parsing the request header.
icu = { version = "1.5", features = ["compiled_data"] }
fixed_decimal = "0.5"
unic-langid = { version = "0.9", features = ["macros"] }
accept-language = "3"
fluent = "0.17"
fluent-syntax = "0.12"
# Money handling: ISO 4217 metadata + locale-correct formatting (incl. INR
# lakh grouping). Pure-Rust wasm-clean dep.
rusty-money = "0.5"
[build-dependencies]
sha2 = "0.10"
base64 = "0.22"
[profile.release]
opt-level = "s"
lto = true