-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (30 loc) · 924 Bytes
/
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
[package]
name = "snake"
description = "snake game in rust"
version = "0.1.0"
resolver = "2"
authors = ["Abraham <[email protected]>"]
keywords = ["snake", "game"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ggez = "0.8.0"
rand = "0.8.5"
smart-default = "0.6.0"
getrandom = { version = "0.2", features = ["js"] }
serde_json = { version = "1.0.91", default-features = false, features = ["alloc"] }
serde = "1.0.152"
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3
overflow-checks = true
[package.metadata.deb]
maintainer = "Abraham Cedeno <[email protected]>"
copyright = "2022, Abraham Cedeno <[email protected]>"
extended-description = """\
A simple subcommand for the Cargo package manager for \
building Debian packages from Rust projects."""
depends = "$auto"
section = "game"
priority = "optional"