• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "csv"
3version = "1.3.0"  #:version
4authors = ["Andrew Gallant <jamslam@gmail.com>"]
5description = "Fast CSV parsing with support for serde."
6documentation = "https://docs.rs/csv"
7homepage = "https://github.com/BurntSushi/rust-csv"
8repository = "https://github.com/BurntSushi/rust-csv"
9readme = "README.md"
10keywords = ["csv", "comma", "parser", "delimited", "serde"]
11license = "Unlicense/MIT"
12categories = ["encoding", "parser-implementations"]
13exclude = ["/.github", "/ci/*", "/scripts/*"]
14edition = "2021"
15rust-version = "1.61"
16
17[workspace]
18members = ["csv-core", "csv-index"]
19
20[lib]
21bench = false
22
23[dependencies]
24csv-core = { path = "csv-core", version = "0.1.11" }
25itoa = "1"
26ryu = "1"
27serde = "1.0.55"
28
29[dev-dependencies]
30bstr = { version = "1.2.0", default-features = false, features = ["alloc", "serde"] }
31serde = { version = "1.0.55", features = ["derive"] }
32
33[profile.release]
34debug = true
35
36[profile.bench]
37debug = true
38