Disable fake dataset by default (#720)

This commit is contained in:
Nathaniel Simard 2023-08-29 12:04:31 -04:00 committed by GitHub
parent 0fd82ee5d3
commit 4ea96627a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,6 @@ version = "0.9.0"
[features]
default = [
"fake",
"sqlite-bundled"
]
@ -53,3 +52,4 @@ thiserror = {workspace = true}
[dev-dependencies]
rayon = {workspace = true}
rstest = {workspace = true}
fake = {workspace = true}

View File

@ -1,5 +1,5 @@
mod base;
#[cfg(feature = "fake")]
#[cfg(any(test, feature = "fake"))]
mod fake;
mod in_memory;
mod iterator;