-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
33 lines (31 loc) · 871 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
[package]
name = "smo-online-server"
authors = ["Jules Guesnon"]
version = "0.3.0"
edition = "2021"
repository = "https://github.com/JulesGuesnon/smo-online-server"
keywords = ["mario", "smo", "online", "server"]
categories = ["game"]
readme = "readme.md"
description = """
A server to play Super Mario Odyssey online
"""
[dependencies]
bytes = "1.2.1"
chrono = "0.4.20"
clap = { version = "3.2.16", features = ["derive"] }
color-eyre = "0.6.2"
futures = "0.3.21"
glam = "0.21.3"
once_cell = "1.13.0"
owo-colors = "3.4.0"
serde = { version = "1.0.142", features = ["derive"] }
serde_json = "1.0.83"
tokio = { version = "1.20.1", features = ["full"] }
tracing = "0.1.36"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.15", features = ["env-filter", "fmt"] }
uuid = { version = "1.1.2", features = ["serde", "v4"] }
[profile.release]
debug = 1
lto = "fat"