Dima Pristupa

Results 38 comments of Dima Pristupa

**Example of usage** Request: ```graphql query getDatasetMainData( $accountName: AccountName! $datasetName: DatasetName! ) { datasets { byOwnerAndName(accountName: $accountName, datasetName: $datasetName) { endpoints { webLink { url } cli { pullCommand pushCommand...

> Instead, bugs in both extensions should be fixed. Until the bugs are fixed, it would be great to document the incompatibility

@zslayton, could you please take a look at this PR?

> I guess this could also be a set of options on the Command struct, so I could do something like: > > ```rust > let mut cmd = Command::cargo_bin("mycli")?;...

> Just to clarify, did you try updating the firmware on your microbit? > > https://microbit.org/get-started/user-guide/firmware/ Your advice helped me a lot in a similar situation -- thank you so...

I can confirm that excluding spaces from the path solves the problem. As a workaround, created a `bat` script, with just the run command (for example): ```bat start "" "C:\Program...

I thought so too at first, but `sqlite` is the default enabled feature -- and if features are not explicitly specified in `cargo install` (which is our case), the default...

```toml [dependencies.libsqlite3-sys] version = "0.30.1" default-features = false features = [ "pkg-config", "vcpkg", "bundled", "unlock_notify" ] ``` (c) [source](https://github.com/launchbadge/sqlx/blob/a892ebc6e283f443145f92bbc7fce4ae44547331/sqlx-sqlite/Cargo.toml#L54) it looks like a `bundled` version is being used... -- Also...

Update: the issue mentioned above has been finished, but there has been no `sqlx` release yet - https://github.com/launchbadge/sqlx/issues/191