mirror of
https://codeberg.org/icewind/vbsp.git
synced 2026-06-04 02:54:08 +02:00
css entities: initial guess
This commit is contained in:
parent
adf79d70a1
commit
4007d9e80f
3 changed files with 1846 additions and 1 deletions
|
|
@ -36,8 +36,12 @@ criterion = "0.5.1"
|
||||||
opt-level = 2
|
opt-level = 2
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["basic"]
|
default = [
|
||||||
|
"basic",
|
||||||
|
"css",
|
||||||
|
]
|
||||||
basic = []
|
basic = []
|
||||||
|
css = []
|
||||||
|
|
||||||
[[bench]]
|
[[bench]]
|
||||||
name = "bench"
|
name = "bench"
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,8 @@ use vdf_reader::VdfError;
|
||||||
|
|
||||||
#[cfg(feature = "basic")]
|
#[cfg(feature = "basic")]
|
||||||
pub mod basic;
|
pub mod basic;
|
||||||
|
#[cfg(feature = "css")]
|
||||||
|
pub mod css;
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct Entities {
|
pub struct Entities {
|
||||||
|
|
|
||||||
1839
src/data/entity/css.rs
Normal file
1839
src/data/entity/css.rs
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue