Jonathan Kelley
Jonathan Kelley
@const-volatile I've been manually building the sim target, so yeah I think there's a missing target. To work around it locally: ``` cargo build --target aarch64-apple-ios-sim ```
I've updated this branch and disabled my toml autoformatter. Hopefully it should clear CI now. Sorry for the wait :) ping @seanmonstar
@seanmonstar Hey - would love to get your re-review of this since a handful of people have reached out to me about this. Thanks!
Bumping @seanmonstar
``` pkill -f cargo ``` Will release the lock on the target directory.
Sure, I'm implementing something right now. ```rust let mut out_buf = String::new(); write!(out_buf, "{}", Caser::ToSnake("CamelCase")) ``` So instead of calling `ToString` in places where do today, implement the `write!` trait...
Right now the API of `to_case()` doesn't allow you to provide an existing string to write to. The extension I propose (and am willing to add) would allow you to...
I like the syntax you proposed here! It would be helpful for things like classes/classnames. For multiple attributes, we could merge them somehow. ```rust let colorful = Some("blue"); let enabled...
Ah, I use this crate is a dev-dependency in my "core" crate - when I remove this RA is happy again. I guess there's an issue with circular dependencies through...
Hey, Dioxus is maintaining its own CLI but we share a lot of code with Trunk. We'd be happy to bring it under the maintenance wing of the Dioxus org...