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
Raw Permalink Normal View History

2023-10-17 09:21:52 +02:00
[package]
name = "xash3d-protocol"
description = "Network protocol library for Xash3D engine"
2024-08-29 16:34:02 +02:00
version = "0.2.0"
license = "LGPL-3.0-only"
keywords = ["xash3d"]
categories = ["parsing"]
2023-10-17 09:21:52 +02:00
authors = ["Denis Drakhnia <numas13@gmail.com>"]
edition = "2021"
rust-version = "1.56"
homepage = "https://xash.su"
2024-11-14 08:07:52 +01:00
repository = "https://github.com/FWGS/xash3d-master"
2023-10-17 09:21:52 +02:00
2024-09-26 08:07:55 +02:00
[features]
2024-09-26 09:03:54 +02:00
default = ["std", "net"]
2024-09-26 08:07:55 +02:00
std = ["alloc"]
alloc = []
2024-11-13 08:15:11 +01:00
net = ["std"]
2024-09-26 08:07:55 +02:00
2023-10-17 09:21:52 +02:00
[dependencies]
log = "0.4.18"
2023-10-17 09:21:52 +02:00
bitflags = "2.4"
[build-dependencies]
autocfg = "1.3"