Disable legacy Cargo features (#1158)

This commit is contained in:
Kornel 2024-09-01 13:45:31 +01:00 committed by GitHub
parent d2f54a8fe0
commit c61fcbe2c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 3 deletions

View File

@ -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",
@ -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"