forked from OpenSteamClient/OpenSteamClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (40 loc) · 1.16 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (40 loc) · 1.16 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
[package]
name = "steamflow"
version = "0.1.0"
edition = "2021"
description = "SteamFlow launcher using steam-vent for auth/network and egui for UI"
license = "MIT"
[dependencies]
anyhow = "1"
directories = "5"
eframe = { version = "0.33", default-features = true }
egui = "0.33"
image = { version = "0.25", default-features = false, features = ["jpeg", "png"] }
keyvalues-serde = "0.2"
prost = "0.13"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "blocking"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
steam-vent = "0.4.2"
steam-vent-proto = "=0.5.2"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs", "time"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
walkdir = "2"
hex = "0.4"
sha1 = "0.10"
flate2 = "1"
xz2 = "0.1"
cbc = "0.1"
aes = "0.8"
[package.metadata.deb]
name = "steamflow"
maintainer = "SteamFlow Contributors"
copyright = "2026, SteamFlow Contributors"
license-file = ["../LICENSE", "4"]
section = "games"
priority = "optional"
depends = "$auto, libssl3"
assets = [
["target/release/steamflow", "usr/bin/steamflow", "755"],
]