mirror of
https://github.com/loro-dev/loro.git
synced 2025-02-06 12:25:03 +00:00
fix: feature err
This commit is contained in:
parent
e5c022b204
commit
2ecb156f30
1 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,6 @@ use crate::{
|
|||
InternalString, LoroValue, ID,
|
||||
};
|
||||
|
||||
use arbitrary::Arbitrary;
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
use std::{any::Any, fmt::Debug};
|
||||
|
@ -21,7 +20,8 @@ pub mod list;
|
|||
pub mod map;
|
||||
pub mod text;
|
||||
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Copy, Serialize, Deserialize, Arbitrary)]
|
||||
#[cfg_attr(feature = "test_utils", derive(arbitrary::Arbitrary))]
|
||||
#[derive(Debug, PartialEq, Eq, Hash, Clone, Copy, Serialize, Deserialize)]
|
||||
pub enum ContainerType {
|
||||
/// See [`crate::text::TextContent`]
|
||||
Text,
|
||||
|
|
Loading…
Reference in a new issue