Sebastian Ziebell

Results 11 comments of Sebastian Ziebell

The `test-book` command fails internally, because the environment variable `CARGO_CRATE_NAME` is not set for some reason, even though the env var is passed as an argument (see [main.rs](https://github.com/knurling-rs/defmt/blob/main/xtask/src/main.rs#L401-L413)) to the...

There are a few articles out there that might be good resources for what to look out for to reduce compile times for larger projects. * [matklad's Fast Rust Builds](https://matklad.github.io/2021/09/04/fast-rust-builds.html)

I will check off the item. Basically `refLinkType` & `bomLinkElementType` are both String types, where the latter one matches a specific pattern (see [`bomLinkElementType`](https://github.com/CycloneDX/specification/blob/master/schema/bom-1.5.schema.json#L141) definition vs [`refType`](https://github.com/CycloneDX/specification/blob/master/schema/bom-1.5.schema.json#L123)).

Hi @ctron , sorry for the late reply, do you think the change in PR #583 covers your use case?

@bluejekyll thanks for the feedback, really appreciate that you like the proposal. > First, I don't know if we necessarily want the RFC process Our reasoning here was, writing an...

Should we close this in favour of #2222 ?

Hello, I asked on the CycloneDX Slack to clarify how to handle the `description` tag. It's not totally clear to me if `` is a valid entry or if it...

**Update**: The answer on Slack was the `` tag is valid, it should result in an empty string. The current XML parse logic is therefore wrong, at least for these...

The `e2e` test suite fails to compile, for example `Record::cname` or `Record::CNAME` are not defined. The [`Record`](https://github.com/hickory-dns/hickory-dns/blob/main/conformance/packages/dns-test/src/record.rs#L54) is the one defined in the `dns-test` package. Maybe you missed something to...