dbase 0.7.0

Read & Write .dbf in Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "dbase"
version = "0.7.0"
authors = ["tmontaigu <thomas.montaigu@laposte.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Read & Write .dbf in Rust"
homepage = "https://github.com/tmontaigu/dbase-rs"
readme = "README.md"
keywords = [
    "dbase",
    "dbf",
]
license = "MIT"
repository = "https://github.com/tmontaigu/dbase-rs"

[package.metadata.docs.rs]
features = [
    "yore",
    "serde",
]

[features]
chrono = ["dep:chrono"]
datafusion = [
    "dep:datafusion",
    "dep:datafusion-expr",
    "dep:async-trait",
]
encoding_rs = [
    "dep:encoding_rs",
    "dep:codepage",
]
yore = ["dep:yore"]

[lib]
name = "dbase"
path = "src/lib.rs"

[[example]]
name = "datafusion"
path = "examples/datafusion.rs"
required-features = ["datafusion"]

[[example]]
name = "file"
path = "examples/file.rs"

[[example]]
name = "print-content"
path = "examples/print-content.rs"

[[test]]
name = "test_bugged_file_sync"
path = "tests/test_bugged_file_sync.rs"

[[test]]
name = "test_file"
path = "tests/test_file.rs"

[[test]]
name = "test_serde"
path = "tests/test_serde.rs"

[[test]]
name = "tests"
path = "tests/tests.rs"

[dependencies.async-trait]
version = "0.1"
optional = true

[dependencies.bufrw]
version = "0.2.0"

[dependencies.byteorder]
version = "1.4.3"

[dependencies.chrono]
version = "0.4.39"
optional = true

[dependencies.codepage]
version = "0.1.2"
optional = true

[dependencies.datafusion]
version = "46"
optional = true

[dependencies.datafusion-expr]
version = "46"
optional = true

[dependencies.encoding_rs]
version = "0.8.35"
optional = true

[dependencies.serde]
version = "1.0.102"
optional = true

[dependencies.time]
version = "0.3"
features = ["std"]

[dependencies.yore]
version = "1.0.1"
optional = true

[dev-dependencies.serde_derive]
version = "1.0.102"

[dev-dependencies.tempfile]
version = "3.4.0"

[dev-dependencies.tokio]
version = "1.26"