mirror of
https://github.com/loro-dev/loro.git
synced 2025-02-11 14:53:12 +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,
|
InternalString, LoroValue, ID,
|
||||||
};
|
};
|
||||||
|
|
||||||
use arbitrary::Arbitrary;
|
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
use std::{any::Any, fmt::Debug};
|
use std::{any::Any, fmt::Debug};
|
||||||
|
@ -21,7 +20,8 @@ pub mod list;
|
||||||
pub mod map;
|
pub mod map;
|
||||||
pub mod text;
|
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 {
|
pub enum ContainerType {
|
||||||
/// See [`crate::text::TextContent`]
|
/// See [`crate::text::TextContent`]
|
||||||
Text,
|
Text,
|
||||||
|
|
Loading…
Reference in a new issue