2018-12-23 05:01:35 +00:00
|
|
|
[package]
|
2018-12-23 21:16:02 +00:00
|
|
|
name = "sd"
|
2019-01-02 04:55:43 +00:00
|
|
|
version = "0.4.1"
|
2018-12-23 05:01:35 +00:00
|
|
|
edition = "2018"
|
|
|
|
authors = ["Gregory <gregory.mkv@gmail.com>"]
|
2018-12-25 23:32:44 +00:00
|
|
|
description = "An intuitive find & replace CLI"
|
2018-12-24 00:59:41 +00:00
|
|
|
readme = "README.md"
|
2018-12-23 05:01:35 +00:00
|
|
|
keywords = ["sed", "find", "replace", "regex"]
|
|
|
|
license = "MIT"
|
2018-12-24 00:59:41 +00:00
|
|
|
homepage = "https://github.com/chmln/sd"
|
|
|
|
repository = "https://github.com/chmln/sd.git"
|
2018-12-23 05:01:35 +00:00
|
|
|
categories = ["command-line-utilities", "text-processing", "development-tools"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
regex = "1.1.0"
|
2018-12-25 23:32:44 +00:00
|
|
|
structopt = "0.2.14"
|
2019-01-03 01:54:39 +00:00
|
|
|
atomic-write = "0.2.0"
|
2018-12-29 23:08:24 +00:00
|
|
|
rayon = "1.0.3"
|
2018-12-30 04:02:26 +00:00
|
|
|
regex-syntax = "0.6.4"
|
2018-12-23 05:01:35 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
lto = true
|
|
|
|
debug = false
|