-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCargo.toml
37 lines (34 loc) · 1.39 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
[package]
name = "offline-chess-puzzles"
version = "2.4.1"
authors = ["brianch <brianch@users.noreply.github.com>"]
edition = "2021"
[dependencies]
#iced = {version = "0.10.0", features = ["svg", "tokio", "lazy"] }
#iced_aw = {version = "0.7.0", default-features = false, features = ["tabs"] }
iced = { version = "0.13.1", default-features = false, features = ["svg", "tokio", "lazy", "advanced"] }
iced_aw = { version = "0.11.0", default-features = false, features = ["tabs"] }
iced_drop = {git = "https://github.com/jhannyj/iced_drop.git", rev="d259ec4dff098852d995d3bcaa5551a88330636f"}
rand = "0.8.5"
chess = "3.2.0"
csv = "1.3.1"
serde = "1.0.217"
serde_derive = "1.0.217"
serde_json = "1.0.135"
tokio = { version = "1.43.0", features = ["process", "io-std", "io-util", "sync"] }
reqwest = "0.12.12"
zstd = "0.13.2"
rodio = { version = "0.20.1", default-features = false, features = ["vorbis"] }
fluent-bundle = "0.15.3"
intl-memoizer = "0.5.2"
once_cell = "1.20.2"
unic-langid = { version = "0.9.5", features = ["macros"] }
diesel = { version = "2.2.6", features = ["sqlite"] }
dotenvy = "0.15.7"
lopdf = "0.34.0"
open = "5.3.2"
#rfd = { version = "0.13.0", default-features = false, features = ["xdg-portal", "tokio"] }
rfd = "0.15.2"
image = { version = "0.25.5", default-features = false, features = ["jpeg"] }
[target.'cfg(windows)'.dependencies]
libsqlite3-sys = { version = "0.30.1", features = ["bundled"] }