blob: 628e8cd2a9dd94570dc0d4098191b23336ac2261 [file] [log] [blame]
Jakub Koturc72d7202020-12-21 17:28:15 +01001[package]
2name = "csv"
Joel Galenson571ea992021-04-01 15:42:58 -07003version = "1.1.6" #:version
Jakub Koturc72d7202020-12-21 17:28:15 +01004authors = ["Andrew Gallant <jamslam@gmail.com>"]
5description = "Fast CSV parsing with support for serde."
6documentation = "http://burntsushi.net/rustdoc/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 = ["/.travis.yml", "/appveyor.yml", "/ci/*", "/scripts/*"]
14edition = "2018"
15
16[badges]
17travis-ci = { repository = "BurntSushi/rust-csv" }
18appveyor = { repository = "BurntSushi/rust-csv" }
19
20[workspace]
21members = ["csv-core", "csv-index"]
22
23[lib]
24bench = false
25
26[dependencies]
27bstr = { version = "0.2.1", features = ["serde1"] }
28csv-core = { path = "csv-core", version = "0.1.6" }
29itoa = "0.4.3"
30ryu = "1"
31serde = "1.0.55"
32
33[dev-dependencies]
34serde = { version = "1.0.55", features = ["derive"] }
35
36[profile.release]
37debug = true
38
39[profile.bench]
40debug = true