[package]
edition = "2021"
name = "lance-datagen"
version = "2.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A columnar data format that is 100x faster than Parquet for random access."
readme = "README.md"
keywords = [
"data-format",
"data-science",
"machine-learning",
"apache-arrow",
"data-analytics",
]
categories = [
"database-implementations",
"data-structures",
"development-tools",
"science",
]
license = "Apache-2.0"
repository = "https://github.com/lance-format/lance"
[lib]
name = "lance_datagen"
path = "src/lib.rs"
bench = false
[[bench]]
name = "array_gen"
path = "benches/array_gen.rs"
harness = false
[dependencies.arrow]
version = "57.0.0"
features = ["prettyprint"]
[dependencies.arrow-array]
version = "57.0.0"
[dependencies.arrow-cast]
version = "57.0.0"
[dependencies.arrow-schema]
version = "57.0.0"
[dependencies.chrono]
version = "0.4.41"
features = [
"std",
"now",
"serde",
]
default-features = false
[dependencies.futures]
version = "0.3"
[dependencies.half]
version = "2.1"
features = [
"num-traits",
"std",
]
default-features = false
[dependencies.hex]
version = "0.4.3"
[dependencies.rand]
version = "0.9.1"
features = ["small_rng"]
[dependencies.rand_distr]
version = "0.5.1"
[dependencies.rand_xoshiro]
version = "0.7.0"
[dependencies.random_word]
version = "0.5"
features = ["en"]
[dev-dependencies.criterion]
version = "0.5"
features = [
"async",
"async_tokio",
"html_reports",
]
[target.'cfg(target_os = "linux")'.dev-dependencies.pprof]
version = "0.14.0"
features = [
"flamegraph",
"criterion",
]
[lints.clippy]
dbg_macro = "deny"
fallible_impl_from = "deny"
large_futures = "deny"
manual_let_else = "deny"
multiple-crate-versions = "allow"
print_stderr = "deny"
print_stdout = "deny"
redundant_clone = "deny"
redundant_pub_crate = "deny"
single_range_in_vec_init = "allow"
string_add = "deny"
string_add_assign = "deny"
string_lit_as_bytes = "deny"
trait_duplication_in_bounds = "deny"
use_self = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.cargo]
level = "deny"
priority = -1
[lints.clippy.style]
level = "deny"
priority = -1
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(coverage,coverage_nightly)"]