Erik Živković

Results 18 issues of Erik Živković

Related issue: https://github.com/rust-lang/book/issues/1539 I started writing a question on the "users" forum, but thought I might write an issue instead. I am trying to sharpen my Rust knowledge a bit,...

Q for ourselves

I have a git with the following layout ``` . ├── Cargo.toml ├── app-wasm │ ├── Cargo.toml ├── cli │ ├── Cargo.toml ├── crates │ ├── api │ │ ├──...

## Describe the bug I recently upgraded from Nightwatch `1.7.11` to `2.3.0` and I noticed that `browser.resizeWindow` doesn't work anymore. I have tried making sure I am configuring things according...

bug
pr open
complexity: low

I would like to propose a feature that would help a lot when debugging using printing to log. For a given Mappable, it would be nice if the `toJSONString(prettyPrint: true)`...

Hi, It seems like no one has worked on this project for a year, but here goes: I tried to build this project, but unfortunately i failed... Here is the...

Hello, We have recently deployed an application to Apple's App Store for iOS and are getting a small number of crashes in Crashlytics that may be caused by taking a...

bug
OS-ios

I am trying to get `cargo-instruments` running like this: ```shell cargo instruments -t time Finished dev [unoptimized + debuginfo] target(s) in 0.96s Profiling target/debug/cli with template 'Time Profiler' Failed instruments...

## Environment * **IntelliJ Rust plugin version:** 0.4.193.5352-231 * **Rust toolchain version:** cargo 1.69.0 (6e9a83356 2023-04-12) * **IDE name and version:** CLion 2023.1.2 * **Operating system:** macOS Ventura 13.3.1 (a)...

I've been successfully using the "Swift Package" approach to build my swift-bridge library, but every time it's compiled XCode spends _a long time_ refreshing the swift package(s), which can be...

Clippy complains: ``` error: casting raw pointers to the same type and constness is unnecessary (`*mut my_mod::FfiThing` -> `*mut my_mod::FfiThing`) ``` For this declaration: ```rust #[swift_bridge::bridge] mod ffi { //...