2024-02-13 00:12:55 -08:00
|
|
|
[package]
|
2024-02-13 19:48:47 -08:00
|
|
|
name = "strafesnet_deferred_loader"
|
2024-10-03 14:39:10 -07:00
|
|
|
version = "0.4.1"
|
2024-02-13 00:12:55 -08:00
|
|
|
edition = "2021"
|
2025-01-03 03:42:20 -08:00
|
|
|
repository = "https://git.itzana.me/StrafesNET/strafe-project"
|
2024-03-29 02:12:56 -07:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
description = "Acquire IDs for objects before loading them in bulk."
|
|
|
|
authors = ["Rhys Lloyd <krakow20@gmail.com>"]
|
2024-02-13 00:12:55 -08:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[features]
|
2024-02-14 23:46:32 -08:00
|
|
|
default = ["legacy"]
|
2024-10-01 12:37:14 -07:00
|
|
|
legacy = ["dep:url","dep:vbsp"]
|
2024-02-14 23:45:16 -08:00
|
|
|
#roblox = ["dep:lazy-regex"]
|
|
|
|
#source = ["dep:vbsp"]
|
2024-02-13 00:12:55 -08:00
|
|
|
|
|
|
|
[dependencies]
|
2025-01-02 20:22:05 -08:00
|
|
|
strafesnet_common = { path = "../common", registry = "strafesnet" }
|
2024-10-01 12:37:14 -07:00
|
|
|
url = { version = "2.5.2", optional = true }
|
2024-10-01 16:23:09 -07:00
|
|
|
vbsp = { version = "0.6.0", optional = true }
|