blob: 165ba3c233f6662419bd42650241088088d060e4 (
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
27
|
[package]
name = "snapshot"
version = "0.0.1"
authors = [
"metamuffin <metamuffin@disroot.org>",
"heinrich5991 <heinrich5991@gmail.com>",
]
license = "AGPL-3.0-only"
[dependencies]
buffer = "0.1.9"
common = { git = "https://github.com/heinrich5991/libtw2" }
gamenet_teeworlds_0_5 = { git = "https://github.com/heinrich5991/libtw2", optional = true }
gamenet_teeworlds_0_6 = { git = "https://github.com/heinrich5991/libtw2", optional = true }
gamenet_teeworlds_0_7 = { git = "https://github.com/heinrich5991/libtw2", optional = true }
gamenet_ddnet = { git = "https://github.com/heinrich5991/libtw2", optional = true }
packer = { git = "https://github.com/heinrich5991/libtw2" }
vec_map = "0.8.0"
warn = ">=0.1.1,<0.3.0"
[features]
default = ["gamenet_ddnet"]
gamenet_tw_0_5 = ["gamenet_teeworlds_0_5"]
gamenet_tw_0_6 = ["gamenet_teeworlds_0_6"]
gamenet_tw_0_7 = ["gamenet_teeworlds_0_7"]
gamenet_ddnet_0_6 = ["gamenet_ddnet"]
|