dbr/Ben

Results 190 comments of dbr/Ben

> Regarding running against a `.crate` file, I'm not sure even how to do run cargo against a `.crate` Oh, actually, I just read the [`cargo package` docs](https://doc.rust-lang.org/cargo/commands/cargo-package.html).. well, actually...

I'd agree with skipping any further 0.8.x releases - best to make v0.9 and settle on a good system for future patch releases

Closing old PR as per comment in #480

A solution to this this seems to be on Github's roadmap: https://github.com/github/roadmap/issues/184 > However, PATs only have broad scopes (e.g. repos or orgs), which grant access to anything the user...

This is now possible, https://github.blog/2022-10-18-introducing-fine-grained-personal-access-tokens-for-github/ A token with read only access to repository content seems to do what I was hoping - closing!

We had the same problem with the imgui-rs project, https://github.com/imgui-rs/imgui-rs/pull/646 Specifically: - We added a new `freetype` feature, which caused the library to build with additional `.cpp` files (which we...

Oh just noticed `Python::acquire_gil();` is deprecated in 0.17 - but changing it to `Python::with_gil(|_py|{});` crashes identically

Sorry for the confusion! The docking support will be released as part of v0.9 The version in latest-revision's Cargo.toml is indeed confusing - but just read `0.8.1-alpha.0` is `0.9.0-dev` or...

Sorry for the slow reply! I think you just need to do `glium = "0.30"` because the latest release of imgui-rs (0.8) ises this, as seen here: https://crates.io/crates/imgui-glium-renderer/0.8.2/dependencies You may...

Thanks, that sounds good to me! I'll make a PR shortly with a document writing that down. If everyone is happy with that doc then we can move on to...