Skip to content
This repository has been archived by the owner on Oct 30, 2021. It is now read-only.

Commit

Permalink
Add Cargo.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
RazrFalcon committed Nov 1, 2019
1 parent 66ddac6 commit 3dc9dd6
Show file tree
Hide file tree
Showing 2 changed files with 202 additions and 20 deletions.
197 changes: 197 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 5 additions & 20 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,12 @@ name = "svgcleaner"
path = "src/main.rs"

[dependencies]
clap = { version = "2", default-features = false, optional = true }
error-chain = { version = "0.11", default-features = false }
# fern 0.5.9 added chrono and we don't need it
fern = { version = "=0.5.8", default-features = false }
log = "0.4"
fern = "0.5"

[dependencies.svgdom]
# latest
# git = "https://github.com/RazrFalcon/libsvgdom.git"
# branch = "devel"
# local copy
# path = "../svgdom"
# from crates
version = "0.10.5"

[dependencies.error-chain]
version = "0.11"
default-features = false

[dependencies.clap]
version = "2"
default-features = false
optional = true
svgdom = "0.10.5"

[features]
default = ["cli-parsing"]
Expand All @@ -53,5 +39,4 @@ cli-parsing = ["clap"]
# Makes it 5-10% faster, but very slow to compile.
# Also makes an executable ~30% smaller.
[profile.release]
opt-level = 3
lto = true

0 comments on commit 3dc9dd6

Please sign in to comment.