mirror of https://github.com/XAMPPRocky/tokei
Disable legacy Cargo features (#1158)
This commit is contained in:
parent
d2f54a8fe0
commit
c61fcbe2c3
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue