Skip to content

Commit

Permalink
changed to toml on crates.io
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaronepower committed Aug 1, 2016
1 parent 87a7b44 commit a266e6e
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 74 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ Updated various dependencies.

Internal dependencies removed.

## Regressions
- CBOR is not supported till it supports `serde 0.8`

**Added languages**

- Handlebars
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

142 changes: 71 additions & 71 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,71 +1,71 @@
[package]
authors = ["Aaronepower <[email protected]>"]
build = "src/lib/build.rs"
description = "Count code, quickly."
homepage = "https://aaronepower.github.io/tokei/"
include = ["src/**/*", "cli.yml", "Cargo.toml", "LICENCE-APACHE", "LICENCE-MIT"]
license = "MIT/Apache-2.0"
name = "tokei"
readme = "README.md"
repository = "https://github.com/Aaronepower/tokei.git"
version = "4.0.0"

[[bin]]
doc = false
name = "tokei"
path = "src/main.rs"

[build-dependencies]

[build-dependencies.serde_codegen]
optional = true
version = "0.8.0"

[dependencies]
glob = "~0.2.11"
maplit = "~0.1.3"
rayon = "~0.4.0"
walkdir = "~0.1.5"

[dependencies.clap]
version = "~2.10.0"
features = ["yaml"]

[dependencies.rustc-serialize]
optional = true
version = "~0.3.19"

[dependencies.serde]
optional = true
version = "~0.8.0"

[dependencies.serde_cbor]
optional = true
version = "~0.3.3"

[dependencies.serde_json]
optional = true
version = "~0.8.0"

[dependencies.serde_yaml]
optional = true
version = "~0.4.0"

[dependencies.toml]
default-features = false
features = ["serde"]
optional = true
git = "https://github.com/alexcrichton/toml-rs"

[features]
all = ["json", "cbor", "toml-io", "yaml"]
cbor = ["io", "rustc-serialize", "serde_cbor"]
default = []
io = ["serde_codegen", "serde"]
json = ["io", "serde_json"]
toml-io = ["io", "toml/serde"]
yaml = ["io", "serde_yaml"]

[lib]
name = "tokei"
path = "src/lib/lib.rs"
[package]
authors = ["Aaronepower <[email protected]>"]
build = "src/lib/build.rs"
description = "Count code, quickly."
homepage = "https://aaronepower.github.io/tokei/"
include = ["src/**/*", "cli.yml", "Cargo.toml", "LICENCE-APACHE", "LICENCE-MIT"]
license = "MIT/Apache-2.0"
name = "tokei"
readme = "README.md"
repository = "https://github.com/Aaronepower/tokei.git"
version = "4.0.0"

[[bin]]
doc = false
name = "tokei"
path = "src/main.rs"

[build-dependencies]

[build-dependencies.serde_codegen]
optional = true
version = "0.8.0"

[dependencies]
glob = "~0.2.11"
maplit = "~0.1.3"
rayon = "~0.4.0"
walkdir = "~0.1.5"

[dependencies.clap]
features = ["yaml"]
version = "~2.10.0"

[dependencies.rustc-serialize]
optional = true
version = "~0.3.19"

[dependencies.serde]
optional = true
version = "~0.8.0"

[dependencies.serde_cbor]
optional = true
version = "~0.3.3"

[dependencies.serde_json]
optional = true
version = "~0.8.0"

[dependencies.serde_yaml]
optional = true
version = "~0.4.0"

[dependencies.toml]
default-features = false
features = ["serde"]
version = "~0.2.0"
optional = true

[features]
all = ["json", "cbor", "toml-io", "yaml"]
cbor = ["io", "rustc-serialize", "serde_cbor"]
default = []
io = ["serde_codegen", "serde"]
json = ["io", "serde_json"]
toml-io = ["io", "toml/serde"]
yaml = ["io", "serde_yaml"]

[lib]
name = "tokei"
path = "src/lib/lib.rs"

0 comments on commit a266e6e

Please sign in to comment.