[package]
edition = "2021"
name = "las_rs"
version = "0.2.1"
authors = ["Kristian dF Kollsgård <kkollsga@gmail.com>"]
build = false
exclude = [
"/python/",
"/benchmarks/",
"/.benchmarks/",
"/.github/",
"/.vscode/",
"/.pytest_cache/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance parser and writer for LAS (Log ASCII Standard) well-log files — LAS 1.2 / 2.0 / 3.0. Pure-Rust core; the optional `python` feature adds the PyO3 bindings that back the `las-rs` PyPI wheel."
homepage = "https://github.com/kkollsga/las-rs"
documentation = "https://docs.rs/las_rs"
readme = "README.md"
keywords = [
"las",
"well-log",
"geoscience",
"petroleum",
"parsing",
]
categories = [
"parser-implementations",
"science",
"science::geo",
]
license = "MIT"
repository = "https://github.com/kkollsga/las-rs"
[package.metadata.docs.rs]
all-features = false
[features]
default = []
extension-module = ["pyo3/extension-module"]
python = [
"dep:pyo3",
"dep:numpy",
]
[lib]
name = "las_rs"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[example]]
name = "showcase"
path = "examples/showcase.rs"
[[test]]
name = "rust_api"
path = "tests/rust_api.rs"
[dependencies.encoding_rs]
version = "0.8"
[dependencies.fast-float2]
version = "0.2"
[dependencies.memchr]
version = "2"
[dependencies.numpy]
version = "0.28"
optional = true
[dependencies.once_cell]
version = "1"
[dependencies.pyo3]
version = "0.28"
optional = true
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"