aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 8e9c96152b5a4f867dfe3613b7a65945e2bdabac (plain)
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
# cargo-features = ["profile-overrides"]

[package]
name = "rstnode"
description = "A game about capturing computers on a network"
version = "0.0.0"
edition = "2018"
license = "GPL-3.0-or-later"
authors = ["Katharina Fey <kookie@spacekookie.de>"]

[dependencies]
serde = { version = "1.0", features = ["derive", "rc"] }
async-std = { version = "1.0", features = ["unstable"] }
async-trait = "0.1"

ratman = "0.1.0"
netmod-mem = "0.1.0"
identity = { version = "0.4", features = ["random"], package = "ratman-identity"}

ggez = "0.5"
cgmath = { version = "*", features = ["mint"] }
chrono = { version = "0.4", features = ["serde"] }
rand = "0.7"

# [profile.release.overrides."*"]
# opt-level = 3