-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (21 loc) · 750 Bytes
/
Cargo.toml
File metadata and controls
26 lines (21 loc) · 750 Bytes
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
[package]
name = "amdu"
version = "0.1.2"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
steamworks = "0.11.0" # Steamworks SDK 1.58a, newer ones require update due to changed init api
tokio = { version = "1.43", features = ["full", "fs"] }
html-query-extractor = "0.2.2"
html-query-ast = "0.2.2"
serde = { version = "1.0.160", features = ["derive"] }
serde_json = { version = "1.0.96", default-features = false }
regex = "1.10.1"
iced = {version = "0.13.1", features = ["tokio", "image"] }
rfd = "0.15.2"
tokio-util = "0.7.9"
humansize = "2.0.0"
[build-dependencies]
embed-resource = "3.0.1"
[target.'cfg(unix)']
rustflags = ["-C", "link-arg=-Wl,-rpath,$ORIGIN"]