forked from BurntSushi/rust-csv
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
33 lines (27 loc) · 821 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
[package]
name = "csv"
version = "1.0.0-beta.5" #:version
authors = ["Andrew Gallant <[email protected]>"]
description = "Fast CSV parsing with support for serde."
documentation = "http://burntsushi.net/rustdoc/csv/"
homepage = "https://github.com/BurntSushi/rust-csv"
repository = "https://github.com/BurntSushi/rust-csv"
readme = "README.md"
keywords = ["csv", "comma", "parser", "delimited", "serde"]
license = "Unlicense/MIT"
categories = ["encoding", "parser-implementations"]
[badges]
travis-ci = { repository = "BurntSushi/rust-csv" }
appveyor = { repository = "BurntSushi/rust-csv" }
[lib]
bench = false
[dependencies]
csv-core = { path = "csv-core", version = "0.1.3" }
serde = "1.0.7"
[dev-dependencies]
serde_derive = "1"
serde_bytes = "0.10"
[profile.release]
debug = true
[profile.bench]
debug = true