-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (31 loc) · 944 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "rsapar"
version = "0.1.1"
description = "RSaPar is a Rust library for schema-based parsing and validation of structured data files, inspired by JSaPar for Java."
authors = ["Guillermo Céspedes Tabárez <dev.dertin@gmail.com>"]
edition = "2021"
keywords =["schema", "parser", "csv", "fixed-width", "validation"]
categories = ["encoding", "parser-implementations"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dertin/rsapar"
documentation = "https://docs.rs/rsapar"
rust-version = "1.70.0"
[dependencies]
xml-rs="0.8.20"
crossbeam = "0.8.4"
anyhow = "1.0.83"
chrono = "0.4.38"
regex = "1.10.4"
indexmap = "2.2.6"
evalexpr = { version = "11.3.0", optional = true }
[features]
experimental_convert = ["evalexpr"]
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[profile.bench]
debug = true
[dev-dependencies]
rayon = "1.10.0"
criterion = { version = "0.5.1", features = ["async_tokio"] }