diff options
author | Sam Scott <sam.scott89@gmail.com> | 2017-03-08 18:14:48 -0500 |
---|---|---|
committer | Sam Scott <sam.scott89@gmail.com> | 2017-03-09 11:44:42 -0500 |
commit | 92ba37c0679cb79b6ef686866e5b4c0cc7575878 (patch) | |
tree | 55e887e7f70fb00a525715edf1a7cfbd09e6bcea /Cargo.toml | |
parent | c74ae78b8469a68460f4d77b74b14dcaa75df64e (diff) |
Refactoring aproach.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 31 |
1 files changed, 18 insertions, 13 deletions
@@ -1,23 +1,28 @@ [package] -name = "serde_urlencoded" -version = "0.4.2" -authors = ["Anthony Ramine <n.oxyde@gmail.com>"] -license = "MIT/Apache-2.0" -repository = "https://github.com/nox/serde_urlencoded" -documentation = "https://docs.rs/serde_urlencoded" -description = "`x-www-form-urlencoded` meets Serde" -categories = ["encoding", "web-programming"] -keywords = ["serde", "serialization", "urlencoded"] +name = "serde_qs" +version = "0.0.1" +authors = ["Sam Scott <me@samjs.co.uk>"] +# license = "MIT/Apache-2.0" +# repository = "https://github.com/samscott89/serde_urlencoded" +# documentation = "https://docs.rs/serde_urlencoded" +# description = "`x-www-form-urlencoded` meets Serde" +# categories = ["encoding", "web-programming"] +# keywords = ["serde", "serialization", "urlencoded"] -[badges] -travis-ci = {repository = "nox/serde_urlencoded"} +# [badges] +# travis-ci = {repository = "nox/serde_urlencoded"} -[lib] -test = false +# [lib] +# test = false [dependencies] +fnv = "1.0.3" dtoa = "0.4.0" itoa = "0.3.0" serde = "0.9.3" serde_derive = "*" url = "1.0.0" + +[profile.release] +debug = true +lto = false
\ No newline at end of file |