Skip to content

Commit

Permalink
Disable legacy Cargo features (#1158)
Browse files Browse the repository at this point in the history
  • Loading branch information
kornelski authored Sep 1, 2024
1 parent d2f54a8 commit c61fcbe
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ authors = ["Erin Power <xampprocky@gmail.com>"]
build = "build.rs"
categories = ["command-line-utilities", "development-tools", "visualization"]
description = "Count your code, quickly."
edition = "2018"
homepage = "https://tokei.rs"
include = [
"Cargo.lock",
Expand All @@ -20,12 +19,14 @@ name = "tokei"
readme = "README.md"
repository = "https://github.com/XAMPPRocky/tokei.git"
version = "13.0.0-alpha.5"
rust-version = "1.71"
edition = "2021"

[features]
all = ["cbor", "yaml"]
cbor = ["hex", "serde_cbor"]
cbor = ["dep:hex", "dep:serde_cbor"]
default = []
yaml = ["serde_yaml"]
yaml = ["dep:serde_yaml"]

[profile.release]
lto = "thin"
Expand Down

0 comments on commit c61fcbe

Please sign in to comment.