blob: 1c0eee82dfa8ed1f33fb8251dd743ba6d4b1b735 (
plain)
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
|
[package]
name = "csvre"
version = "0.1.0"
authors = ["Oskari Timperi <oskari.timperi@iki.fi>"]
edition = "2018"
license = "GPL-3.0-or-later"
description = "A simple tool for replacing data in CSV columns with regular expressions."
readme = "README.md"
homepage = "https://github.com/oswjk/csvre"
repository = "https://github.com/oswjk/csvre"
keywords = ["csv", "command", "regex"]
categories = ["command-line-utilities", "text-processing"]
[dependencies]
csv = "1"
regex = "1"
docopt = "1.0.2"
serde_derive = "1.0"
serde = "1.0"
[profile.release]
# opt-level = 'z'
lto = true
codegen-units = 1
panic = "abort"
|