1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2021" 14rust-version = "1.61" 15name = "csv" 16version = "1.3.0" 17authors = ["Andrew Gallant <[email protected]>"] 18exclude = [ 19 "/.github", 20 "/ci/*", 21 "/scripts/*", 22] 23description = "Fast CSV parsing with support for serde." 24homepage = "https://github.com/BurntSushi/rust-csv" 25documentation = "https://docs.rs/csv" 26readme = "README.md" 27keywords = [ 28 "csv", 29 "comma", 30 "parser", 31 "delimited", 32 "serde", 33] 34categories = [ 35 "encoding", 36 "parser-implementations", 37] 38license = "Unlicense/MIT" 39repository = "https://github.com/BurntSushi/rust-csv" 40 41[profile.bench] 42debug = 2 43 44[profile.release] 45debug = 2 46 47[lib] 48bench = false 49 50[dependencies.csv-core] 51version = "0.1.11" 52 53[dependencies.itoa] 54version = "1" 55 56[dependencies.ryu] 57version = "1" 58 59[dependencies.serde] 60version = "1.0.55" 61 62[dev-dependencies.bstr] 63version = "1.2.0" 64features = [ 65 "alloc", 66 "serde", 67] 68default-features = false 69 70[dev-dependencies.serde] 71version = "1.0.55" 72features = ["derive"] 73