-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (36 loc) · 988 Bytes
/
Cargo.toml
File metadata and controls
40 lines (36 loc) · 988 Bytes
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
[package]
name = "multipixel"
version = "0.1.0"
edition = "2021"
description = "An app for multiplayer drawing on an infinite canvas"
[features]
default = []
dump = []
[profile.release-with-debug]
inherits = "release"
debug = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.98"
binary-reader = "0.4.5"
bytes = "1.10.1"
console-subscriber = "0.4.1"
futures-util = { version = "0.3.31", features = ["sink"] }
glam = { version = "0.30.4" }
log = "0.4.27"
lz4_flex = "0.11.5"
num = "0.4.3"
num_enum = "0.7.4"
pretty_env_logger = "0.5.0"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
sha1_smol = "1.0.1"
tokio = { version = "1.46.1", features = ["full"] }
tokio-websockets = { version = "0.11.4", features = ["server", "sha1_smol"] }
tokio-util = "0.7.15"
libc = "0.2.174"
tokio-fd = "0.3.0"
fastrand = "2.3.0"
rusqlite = "0.36.0"
smallvec = "1.15.1"
parking_lot = "0.12.4"