-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (45 loc) · 1.16 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
50
51
52
53
54
55
[package]
name = "_client"
version.workspace = true
edition.workspace = true
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
_functions = { path = "../functions" }
_types = { path = "../types" }
hikari-boot = { workspace = true }
anyhow = { workspace = true }
async-trait = { workspace = true }
derive_more = { workspace = true }
once_cell = { workspace = true }
base64 = { workspace = true }
bytes = { workspace = true }
chrono = { workspace = true }
futures = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
strum = { workspace = true }
uuid = { workspace = true }
log = { workspace = true }
console_log = { workspace = true }
web-sys = { workspace = true }
js-sys = { workspace = true }
wasm-bindgen = { workspace = true }
wasm-bindgen-futures = { workspace = true }
gloo = { workspace = true }
reqwest = { version = "^0.12", features = [
"cookies",
"gzip",
"brotli",
"json",
"multipart",
] }
percent-encoding = "^2"
url = "^2"
stylist = { version = "^0.13", features = [
"yew_integration",
"ssr",
"hydration",
] }
yew = { version = "^0.21", features = ["ssr", "hydration"] }
yew-router = "^0.18"