Skip to content

Commit

Permalink
csv-core 0.1.3
Browse files Browse the repository at this point in the history
This also removes csv-core as a dependency from csv-index, since it is
unnecessary.
  • Loading branch information
BurntSushi committed Jul 26, 2017
1 parent 12a87a7 commit 3aaef03
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ appveyor = { repository = "BurntSushi/rust-csv" }
bench = false

[dependencies]
csv-core = { path = "csv-core", version = "0.1.2" }
csv-core = { path = "csv-core", version = "0.1.3" }
serde = "1.0.7"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion csv-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "csv-core"
version = "0.1.2" #:version
version = "0.1.3" #:version
authors = ["Andrew Gallant <[email protected]>"]
description = "Bare bones CSV parsing with no_std support."
documentation = "https://docs.rs/csv-core"
Expand Down
1 change: 0 additions & 1 deletion csv-index/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ bench = false
[dependencies]
byteorder = "1"
csv = { path = "..", version = "1.0.0-beta.3" }
csv-core = { path = "../csv-core", version = "0.1.2" }

[profile.release]
debug = true
Expand Down
1 change: 0 additions & 1 deletion csv-index/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ amenable to serializing to disk.)

extern crate byteorder;
extern crate csv;
extern crate csv_core;

pub use simple::RandomAccessSimple;

Expand Down

0 comments on commit 3aaef03

Please sign in to comment.