-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (38 loc) · 1.43 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
[package]
name = "league-skinset-finder"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Lets us derive things like Display
derive_more = "0.99.17"
# Used to turn the Lane enum into bitflags
enumflags2 = { version = "0.7.8", features = ["std", "serde"] }
# Use over std::time::Instant due to compatability issues with wasm
instant = { version = "0.1.12", features = ["wasm-bindgen"] }
# Logging to the web console.
log = "0.4.20"
console_log = { version = "1.0.0", features = ["color"] }
# Universally unique identifier generation
uuid = { version = "1.5.0", features = ["v4"] }
# Serialization and deserizalization
serde = { version = "1.0.189", features = ["derive", "rc"] }
# Need to specify feature for getrandom to make it work on wasm targets.
getrandom = { version = "0.2", features = ["js"] }
# Constant time string operations
const-str = "0.5.6"
# WASM SPA framework with CSR
leptos = { version = "0.6.7", features = ["csr"] }
# Redirect panics to the JS console in browsers.
console_error_panic_hook = "0.1.7"
# Icons for leptos.
leptos_icons = "0.3.0"
icondata = "0.3.0"
# For build script to timestamp every build.
[build-dependencies]
# Error handling
anyhow = "1.0"
# Unindent to normalize generated rust code.
unindent = "0.2.3"
# Scraper to extract tables from our source data -- we do this at compile time.
scraper = "0.17.1"