1
0

renaming prototype to model

This commit is contained in:
EAimTY 2023-01-25 18:39:24 +09:00
parent ceebbdb200
commit 822da1ceaf
8 changed files with 3 additions and 3 deletions

View File

@ -4,11 +4,11 @@ version = "0.1.0"
edition = "2021"
[features]
prototype = ["parking_lot", "thiserror"]
model = ["parking_lot", "thiserror"]
[dependencies]
parking_lot = { version = "0.12.1", default-features = false, optional = true }
thiserror = { version = "1.0.38", default-features = false, optional = true }
[dev-dependencies]
tuic = { path = ".", features = ["prototype"] }
tuic = { path = ".", features = ["model"] }

View File

@ -3,4 +3,4 @@
pub mod protocol;
#[cfg(feature = "prototype")]
pub mod prototype;
pub mod model;