-
-
Notifications
You must be signed in to change notification settings - Fork 243
Expand file tree
/
Copy pathCargo.toml
More file actions
21 lines (19 loc) · 601 Bytes
/
Cargo.toml
File metadata and controls
21 lines (19 loc) · 601 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "csv-index"
version = "0.1.6" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = "On disk CSV indexing data structures."
documentation = "https://docs.rs/csv-index"
homepage = "https://github.com/BurntSushi/rust-csv"
repository = "https://github.com/BurntSushi/rust-csv"
readme = "README.md"
keywords = ["csv", "comma", "parser", "delimited", "index"]
license = "Unlicense OR MIT"
categories = ["encoding", "parser-implementations"]
workspace = ".."
edition = "2018"
[lib]
bench = false
[dependencies]
byteorder = "1"
csv = { path = "..", version = "1.1.0" }