[package]
edition = "2018"
name = "puruda"
version = "0.2.0"
authors = ["Axect <axect@outlook.kr>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust DataFrame"
readme = "README.md"
keywords = [
"Dataframe",
"CSV",
"JSON",
]
categories = ["data-structures"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Axect/Puruda"
[lib]
name = "puruda"
path = "src/lib.rs"
[[example]]
name = "csv_test"
path = "examples/csv_test.rs"
[[example]]
name = "json_test"
path = "examples/json_test.rs"
[[example]]
name = "test_col"
path = "examples/test_col.rs"
[[test]]
name = "test_basic"
path = "tests/test_basic.rs"
[[test]]
name = "test_display"
path = "tests/test_display.rs"
[[test]]
name = "test_io"
path = "tests/test_io.rs"
[[test]]
name = "test_numeric"
path = "tests/test_numeric.rs"
[[test]]
name = "test_row_ops"
path = "tests/test_row_ops.rs"
[[test]]
name = "test_slicing"
path = "tests/test_slicing.rs"
[[test]]
name = "test_sort_transform"
path = "tests/test_sort_transform.rs"
[dependencies.csv]
version = "1.1"
[dependencies.puruda-macro]
version = "0.2"