-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (37 loc) · 1.25 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
[package]
authors = ["simdimdim <[email protected]>"]
default-run = "main"
edition = "2018"
name = "ehound"
resolver = "2"
version = "0.1.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.vcpkg]
branch = "master"
git = "https://github.com/microsoft/vcpkg"
[package.metadata.vcpkg.target]
x86_64-pc-windows-msvc = {triplet = "x64-windows-static-md"}
# x86_64-unknown-linux-gnu = {install = ["sdl2"]}
[dependencies]
# piston2d-graphics = "0.40.0"
# itertools = "0.10.0"
futures = "0.3.15"
http-serde = "1.0.2"
reqwest = { version = "0.11.3", features = ["cookies", "stream"] }
select = "0.6.0-alpha.1"
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
serde_with = { version = "1.9.2", features = ["json", "macros"] }
tokio = { version = "1.6.1", features = ["time", "net", "fs", "macros", "rt-multi-thread"] }
tokio-serde = "0.8.0"
[target.'cfg(linux)'.dependencies.sdl2]
features = []
version = "0.34.5"
[target.'cfg(not(linux))'.dependencies.sdl2]
features = ["bundled", "use-vcpkg"]
version = "0.34.5"
[dependencies.piston_window]
default-features = false
version = "0.120.0"
[dependencies.pistoncore-sdl2_window]
git = "https://github.com/PistonDevelopers/sdl2_window"