-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (48 loc) · 1.57 KB
/
Cargo.toml
File metadata and controls
58 lines (48 loc) · 1.57 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
authors = ["simdimdim <simdimdim@gmail.com>"]
default-run = "main"
edition = "2018"
name = "pagepal"
resolver = "2"
version = "0.1.2"
[profile.release]
# debug = true
[package.metadata.vcpkg]
branch = "master"
dependencies = ["sdl2"]
git = "https://github.com/microsoft/vcpkg"
target = {x86_64-pc-windows-msvc = {triplet = "x64-windows-static-md"}}
[dependencies]
conrod = "0.62.1"
conrod_core = {git = "https://github.com/simdimdim/conrod"}
conrod_example_shared = {git = "https://github.com/simdimdim/conrod"}
conrod_piston = {git = "https://github.com/simdimdim/conrod"}
# hentai = "0.2.2"
directories-next = "2.0.0"
reqwest = "0.11.4"
select = "0.6.0-alpha.1"
url = { version = "2.2.2", features = ["serde"] }
http-serde = "1.0.2"
serde = { version = "1.0.126", features = ["derive"] }
# serde_json = "1.0.64"
serde_traitobject = { version = "0.2.7", optional = true }
serde_with = { version = "1.9.4", features = ["macros"] }
chrono = { version = "0.4.19", features = ["serde"] }
futures = "0.3.15"
# tokio_schedule = "0.3.0" # https://docs.rs/tokio_schedule/0.3.0/tokio_schedule/
[dependencies.tokio]
features = ["fs", "time", "net", "macros", "rt-multi-thread"]
version = "1.7.1"
[dependencies.piston_window]
default-features = false
version = "0.120.0"
[dependencies.pistoncore-sdl2_window]
git = "https://github.com/simdimdim/sdl2_window"
[target.'cfg(not(target_os = "linux"))'.dependencies.sdl2]
features = ["bundled", "use-vcpkg"]
version = "0.34.5"
[target.'cfg(target_os = "linux")'.dependencies]
sdl2 = "0.34.5"
[features]
default = []
trait_ojb_ser = ["serde_traitobject"]