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" edition = "2021"
[features] [features]
prototype = ["parking_lot", "thiserror"] model = ["parking_lot", "thiserror"]
[dependencies] [dependencies]
parking_lot = { version = "0.12.1", default-features = false, optional = true } parking_lot = { version = "0.12.1", default-features = false, optional = true }
thiserror = { version = "1.0.38", default-features = false, optional = true } thiserror = { version = "1.0.38", default-features = false, optional = true }
[dev-dependencies] [dev-dependencies]
tuic = { path = ".", features = ["prototype"] } tuic = { path = ".", features = ["model"] }

View File

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