-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (37 loc) · 1.09 KB
/
Cargo.toml
File metadata and controls
47 lines (37 loc) · 1.09 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
[package]
name = "procon2021_comp"
version = "0.1.0"
authors = ["combnitnc"]
edition = "2021"
default-run = "procon2021_comp"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.40"
image = "0.23.14"
bitflags = "1.3.2"
rayon = "1.5.1"
reqwest = { version = "0.11.4", features = ["blocking"], optional = true }
dotenv = { version = "0.15.0", optional = true }
bytes = { version = "1.1.0", optional = true }
fxhash = "0.2.1"
[features]
net = ["reqwest", "dotenv", "bytes"]
use-vcpkg = ["sdl2/use-vcpkg", "sdl2/static-link"]
# comment out next line if you want to compile faster
default = ["net", "use-vcpkg"]
[dev-dependencies]
rand = "0.8.4"
[profile.release]
codegen-units = 1
lto = "fat"
debug = true
[dependencies.sdl2]
version = "0.34"
default-features = false
features = ["ttf"]
[package.metadata.vcpkg]
dependencies = ["sdl2", "sdl2-ttf"]
git = "https://github.com/microsoft/vcpkg"
rev = "f93ba152d55e1d243160e690bc302ffe8638358e"
[package.metadata.vcpkg.target]
x86_64-pc-windows-msvc = { triplet = "x64-windows-static-md" }