Denys Séguret

Results 761 comments of Denys Séguret

Here's the current set of doc related jobs: ```TOML [jobs.doc] command = ["cargo", "doc", "--color", "always", "--no-deps"] need_stdout = false # if the doc compiles, then it opens in your...

Do you suggest the arguments after the double-slash (`["foo"]` in your example) should be given only to the initial job ? And what if somebody wanted to have them given...

[cargo check](https://doc.rust-lang.org/cargo/commands/cargo-check.html#options) does accept additional arguments. You can do this today : bacon check -- --all-targets --features "myfeature" So bacon would have to know whether the arguments are used by...

Would that really be better ? I'd take opinions on that.

This looks like two different problems. 1. Can you please prepare an example of no-std lib or program which doesn't compile with lazy-regex due to this std dependency ? 2....

To be honest the ` features = ["std"]` part in my regex import seems to be a forgotten relic and I think it has exactly no impact due to the...

This is an interesting question. To my knowledge, there's still no way for a procedural macro to receive a `const` expression already evaluated. So it looks like lazy-regex would have...

> Based on the cargo expand result I get, const_format generates a const closure and calls it, so it does not produce any literals. I may miss recent advances in...

No objection to the feature. Do you propose to explore that and try to implement it ?

@pamaury Just letting you know I saw your PR, added it to my TODO list, but probably won't be able to handle it soon (maybe not this month) due to...