This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
xash3d-master/protocol/Cargo.toml

26 lines
519 B
TOML

[package]
name = "xash3d-protocol"
description = "Network protocol library for Xash3D engine"
version = "0.2.0"
license = "LGPL-3.0-only"
keywords = ["xash3d"]
categories = ["parsing"]
authors = ["Denis Drakhnia <numas13@gmail.com>"]
edition = "2021"
rust-version = "1.56"
homepage = "https://xash.su"
repository = "https://github.com/FWGS/xash3d-master"
[features]
default = ["std", "net"]
std = ["alloc"]
alloc = []
net = ["std"]
[dependencies]
log = "0.4.18"
bitflags = "2.4"
[build-dependencies]
autocfg = "1.3"