Open qtfkwk opened 3 months ago
Summary of fixes:
json
feature and included in all
Cli.verbose
propertyNumberFormatStyle.all()
methodsrc/consts.rs
self::consts::*
in src/lib.rs
AsciiExt.is_not_line_ending_whitespace()
method
- Added empty
json
feature and included inall
Had to roll back the first item due to that fix causing build issues in checks.
AFAICT prior recent releases v13.0.0-alpha{1,2}
also produced these warnings so it is not related to #1137, #1138, or subsequent PRs.
Unsure if/how @XAMPPRocky et al want to address those?
Just realized @0323pin's build warnings do not include the following, which is also observed, and my reason for trying to add a json
feature.
Pending release of v13.0.0-alpha.4, this issue can be closed, and this build warning (really there are 9 of these, but this is the first one) can be addressed in a new issue.
warning: unexpected `cfg` condition value: `json`
--> src/input.rs:24:23
|
24 | #[cfg(feature = $feature)] extern crate $krate;
| ^^^^^^^^^^^^^^^^^^
...
149 | / supported_formats!(
150 | | (cbor, "cbor", Cbor [serde_cbor, hex]) =>
151 | | |input| {
152 | | hex::FromHex::from_hex(input)
... |
164 | | serde_yaml::to_string,
165 | | );
| |_- in this macro invocation
|
= note: expected values for `feature` are: `all`, `cbor`, `default`, `hex`, `serde_cbor`, `serde_yaml`, and `yaml`
= help: consider adding `json` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
= note: `#[warn(unexpected_cfgs)]` on by default
= note: this warning originates in the macro `supported_formats` (in Nightly builds, run with -Z macro-backtrace for more info)
I think this can be closed now. Built alpha5 a few hours ago without any of these.
Actually, merged the update into the main branch
Just curious ... when should we expect a "real" release?
Just curious ... when should we expect a "real" release?
When I've decided it is ready, I'd kindly remind you that this is a project maintained by me in my spare time, on top of a job and other projects as well having a life outside of programming. Unless I'm paid directly to maintain and regularly release new versions, don't "expect" a release, it will arrive when it means to.
@XAMPPRocky I didn't mean it like that. Believe me, I'm maintaining a large number of packages for NetBSD (among which, this one) on my free time so, I know the feeling.
Originally posted by @0323pin in https://github.com/XAMPPRocky/tokei/issues/1138#issuecomment-2299339915