mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 07:03:16 +00:00
24 lines
680 B
TOML
24 lines
680 B
TOML
[package]
|
|
name = "tangled"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/IntQuant/tangled"
|
|
categories = ["network-programming", ]
|
|
description = "Work-in-progress UDP networking crate."
|
|
|
|
|
|
[[example]]
|
|
name = "chat"
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
crossbeam = "0.8.2"
|
|
tracing = "0.1.36"
|
|
dashmap = "5.3.4"
|
|
serde = {features = ["derive"], version = "1.0.142"}
|
|
bincode = "1.3.3"
|
|
|
|
[dev-dependencies]
|
|
test-log = { version = "0.2.11", default-features = false, features = ["trace"]}
|
|
tracing-subscriber = {version = "0.3", features = ["env-filter", "fmt"]}
|