Type-safe IPC for Tauri using GraphQL

Overview

Tauri Plugin graphql

Crates.io Documentation MIT licensed

A plugin for Tauri that enables type-safe IPC through GraphQL.

Install

Rust

[dependencies]
tauri-plugin-graphql = "0.2"

JavaScript

The only client-side adapter currently is tauri-plugin-graphql-urql, a custom exchange for urql. If you need adapters for other GraphQL clients, open a PR!

Package Version (click for changelogs)
tauri-plugin-graphql-urql urql adapter version

Usage

You need to register the plugin giving it a juniper::RootNode schema. This schema will be used to fulfill requests.

use juniper::{graphql_object, EmptySubscription, EmptyMutation, FieldResult, GraphQLObject, RootNode};
use tauri_plugin_graphql::Context as GraphQLContext;

#[derive(GraphQLObject, Debug, Clone)]
struct ListItem {
    id: i32,
    text: String
}

impl ListItem {
    pub fn new(text: String) -> Self {
        Self {
            id: rand::random::<i32>(),
            text
        }
    }
}

struct Query;

#[graphql_object(context = GraphQLContext)]
impl Query {
    fn list() -> FieldResult<Vec<ListItem>> {
        let item = vec![
            ListItem::new("foo".to_string()),
            ListItem::new("bar".to_string())
        ];

        Ok(item)
    }
}

// Consumers of this schema can only read data, so we must specifcy `EmptyMutation` and `EmptySubscription`
type Schema = RootNode<'static, Query, EmptyMutation<GraphQLContext>, EmptySubscription<GraphQLContext>>;

fn main() {
    let schema = Schema::new(
        Query,
        EmptyMutation::<GraphQLContext>::new(),
        EmptySubscription::<GraphQLContext>::new(),
    );

    tauri::Builder::default()
        .plugin(tauri_plugin_graphql::init(schema))
        .run(tauri::generate_context!())
        .expect("failed to run app");
}

Contributing

If you want to help out, there are a few areas that need improvement:

  • Client Adapters - Currently, only a urql adapter exists; having adapters for more client libraries would be very nice.

PRs are welcome!

License

MIT Β© Jonas Kruckenberg

Comments
  • use async-graphql over juniper

    use async-graphql over juniper

    async-graphql is another gql framework for rust and overall, it seems to be better than juniper according to their comparison. I'ved used both and async-graphql seems better to work with

    opened by Suyashtnt 5
  • Update dependency vite-plugin-singlefile to ^0.12.0

    Update dependency vite-plugin-singlefile to ^0.12.0

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | vite-plugin-singlefile (source) | ^0.11.1 -> ^0.12.0 | age | adoption | passing | confidence |


    Release Notes

    richardtallent/vite-plugin-singlefile

    v0.12.1

    Compare Source

    v0.12.0

    Compare Source


    Configuration

    πŸ“… Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    β™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    πŸ”• Ignore: Close this PR and you won't be reminded about this update again.


    • [x] If you want to rebase/retry this PR, click this checkbox.

    This PR has been generated by Mend Renovate. View repository job log here.

    opened by renovate[bot] 2
  • Are subscription updates supported?

    Are subscription updates supported?

    First time a subscription is executed on the frontend it returns data and works fine but I'm unable to get any updates.

    Reading the library code it looks like data from subscription handler stream is only read and emitted once after which the function returns, initially I thought that I must make my streams to never return None but instead that lead to the whole program freezing. I'm pretty new to rust and juniper but to me it seems like these currently implemented "subscriptions" are really more one-off events and updates are not supported. Is this correct?

    opened by ghost 2
  • Bump juniper from 0.15.9 to 0.15.10 in /examples/preact-app/src-tauri

    Bump juniper from 0.15.9 to 0.15.10 in /examples/preact-app/src-tauri

    Bumps juniper from 0.15.9 to 0.15.10.

    Release notes

    Sourced from juniper's releases.

    juniper-v0.15.10

    Changelog

    Commits
    • 6fd7a59 Release juniper 0.15.10
    • 8d28cdb Backport CVE-2022-31173 fix from GHSA-4rx6-g5vg-5f3j
    • c650713 Backport accepting explicit null argument for nullable list input paramet...
    • 8276173 Release juniper_iron 0.7.6
    • 6dbb574 Release juniper_hyper 0.7.3
    • See full diff in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies 
    opened by dependabot[bot] 1
  • Bump juniper from 0.15.9 to 0.15.10

    Bump juniper from 0.15.9 to 0.15.10

    Bumps juniper from 0.15.9 to 0.15.10.

    Release notes

    Sourced from juniper's releases.

    juniper-v0.15.10

    Changelog

    Commits
    • 6fd7a59 Release juniper 0.15.10
    • 8d28cdb Backport CVE-2022-31173 fix from GHSA-4rx6-g5vg-5f3j
    • c650713 Backport accepting explicit null argument for nullable list input paramet...
    • 8276173 Release juniper_iron 0.7.6
    • 6dbb574 Release juniper_hyper 0.7.3
    • See full diff in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies 
    opened by dependabot[bot] 1
  • Update dependency @tauri-apps/api to v1.0.0

    Update dependency @tauri-apps/api to v1.0.0

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | @tauri-apps/api | 1.0.0-rc.6 -> 1.0.0 | age | adoption | passing | confidence |


    Release Notes

    tauri-apps/tauri

    v1.0.0

    Compare Source

    Updating crates.io index

    Cargo Audit

    Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
          Loaded 417 security advisories (from /home/runner/.cargo/advisory-db)
        Updating crates.io index
        Scanning Cargo.lock for vulnerabilities (448 crate dependencies)
    

    [1.0.0]

    Cargo Publish

    Updating crates.io index
       Packaging tauri v1.0.0 (/home/runner/work/tauri/tauri/core/tauri)
       Uploading tauri v1.0.0 (/home/runner/work/tauri/tauri/core/tauri)
    

    v1.0.0-rc.7

    Compare Source

    Updating crates.io index

    Cargo Audit

    Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
          Loaded 404 security advisories (from /home/runner/.cargo/advisory-db)
        Updating crates.io index
        Scanning Cargo.lock for vulnerabilities (484 crate dependencies)
    

    [1.0.0-rc.7]

    • Breaking change: Removed tauri::api::file::ArchiveFormat::Plain.
    • Fallback to {path}.html when {path} is not found in the Tauri custom protocol handler.
    • Breaking change: Use ayatana-appindicator for Linux system tray by default. Use the gtk-tray Cargo feature to use libappindicator instead.
      • f2a30d8b refactor(core): use ayatana appindicator by default, keep option to use gtk (#​3916) on 2022-04-19
    • Reduce the amount of generated code for the API endpoints.
      • c23f139b perf(core): improve binary size with api enum serde refactor (#​3952) on 2022-04-24
    • *Breaking change:: Added the clipboard Cargo feature.
      • 24e4ff20 refactor(core): add clipboard Cargo feature, enhancing binary size (#​3957) on 2022-04-24
    • Breaking change: The process Command API stdio lines now includes the trailing \r.
    • Expose Window cursor APIs set_cursor_grab, set_cursor_visible, set_cursor_icon and set_cursor_position.
    • Breaking change: The tauri::api::file::Extract#extract_file function has been moved to tauri::api::file::Entry#extract.
    • Breaking change: The tauri::api::file::Extract#files function has been renamed to with_files for performance reasons.
    • Improved the performance of the tauri::api::fs::Extract API.
    • Fixes a panic when using the create_tao_window API.
    • Fixes the HTTP API form text fields.
    • Set the application bundle identifier for the notifications on macOS.
    • Fixes a panic when a menu event is triggered when all windows are minimized on macOS.
    • Fixes a rendering issue when resizing the window with the devtools open.
    • Fixes the WindowBuilder export.
    • The HTTP API now supports multipart/form-data requests. You need to set the Content-Type header and enable the http-multipart Cargo feature.
    • *Breaking change:: Added the global-shortcut Cargo feature.
      • e11878bc refactor(core): add global-shortcut Cargo feature, enhancing binary size (#​3956) on 2022-04-24
    • Added tauri::api::http::HttpRequestBuilder#header method.
    • Breaking change: The tauri::api::http::HttpRequestBuilder#headers method now takes header::HeaderMap instead of a HashMap.
    • Breaking change: The tauri::api::http::Response#headers method now returns &header::HeaderMap instead of &HashMap.
    • Breaking change: The api::http timeouts are now represented as std::time::Duration instead of a u64.
      • 0ecfad59 refactor(updater): unset request timeout, add builder setter (#​3847) on 2022-04-02
    • Breaking change: The tauri::api::http::FormPart::Bytes enum variant has been renamed to File with a value object { file, mime, file_name }.
    • Breaking change: Removed App::create_window, AppHandle::create_window, Builder::create_window and Window::create_window.
    • Breaking change: Removed tauri::api::http::FormPart::File.
    • Added WindowEvent::ThemeChanged(theme).
    • Added theme getter on Window.
    • Added UpdateResponse::body and UpdateResponse::date.
    • Breaking change: Removed the tauri::updater::Error::UnsupportedPlatform variant and added UnsupportedLinuxPackage, UnsupportedOs and UnsupportedArch for better error information.
    • Add updater Downloaded status event.
    • Allow setting app updater request headers via AppHandle::updater().header().
    • The updater default timeout is now unset, and the UpdateBuilder has a timeout setter.
      • 0ecfad59 refactor(updater): unset request timeout, add builder setter (#​3847) on 2022-04-02
    • Added theme setter to the WindowBuilder.

    Cargo Publish

    Updating crates.io index
       Packaging tauri v1.0.0-rc.7 (/home/runner/work/tauri/tauri/core/tauri)
       Uploading tauri v1.0.0-rc.7 (/home/runner/work/tauri/tauri/core/tauri)
    

    Configuration

    πŸ“… Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    β™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    πŸ”• Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, click this checkbox.

    This PR has been generated by Mend Renovate. View repository job log here.

    opened by renovate[bot] 1
  • Update pnpm to v7.2.1

    Update pnpm to v7.2.1

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | pnpm (source) | 7.1.9 -> 7.2.1 | age | adoption | passing | confidence |


    Release Notes

    pnpm/pnpm

    v7.2.1

    Compare Source

    Patch Changes
    • Support Node.js from v14.6.
    • Don't fail when the cafile setting is specified #​4877. This fixes a regression introduced in pnpm v7.2.0.
    Our Sponsors
    ##### What's Changed * fix: support Node.js v14.6 by @​zkochan in https://github.com/pnpm/pnpm/pull/4878

    Full Changelog: https://github.com/pnpm/pnpm/compare/v7.2.0...v7.2.1

    v7.2.0

    Compare Source

    Minor Changes

    • A new setting is supported for ignoring specific deprecation messages: pnpm.allowedDeprecatedVersions. The setting should be provided in the pnpm section of the root package.json file. The below example will mute any deprecation warnings about the request package and warnings about express v1:

      {
        "pnpm": {
          "allowedDeprecatedVersions": {
            "request": "*",
            "express": "1"
          }
        }
      }
      

      Related issue: #​4306 Related PR: #​4864

    Patch Changes

    • Update the compatibility database.
    • Report only the first occurrence of a deprecated package.
    • Add better hints to the peer dependency issue errors.

    Our Sponsors

    #### What's Changed * fix(setup): use @​pnpm/os.env.path-extender by @​zkochan in https://github.com/pnpm/pnpm/pull/4862 * fix: don't report the same deprecated package multiple times by @​zkochan in https://github.com/pnpm/pnpm/pull/4863 * feat: allowed deprecated versions by @​zkochan in https://github.com/pnpm/pnpm/pull/4864 * fix: add better peer dep error hints by @​zkochan in https://github.com/pnpm/pnpm/pull/4875

    Full Changelog: https://github.com/pnpm/pnpm/compare/v7.1.9...v7.2.0


    Configuration

    πŸ“… Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    β™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    πŸ”• Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, click this checkbox.

    This PR has been generated by Mend Renovate. View repository job log here.

    opened by renovate[bot] 1
  • Update dependency tsup to v6.1.2

    Update dependency tsup to v6.1.2

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | tsup | 6.1.0 -> 6.1.2 | age | adoption | passing | confidence |


    Release Notes

    egoist/tsup

    v6.1.2

    Compare Source

    Bug Fixes

    v6.1.1

    Compare Source

    Features

    Configuration

    πŸ“… Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    β™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    πŸ”• Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, click this checkbox.

    This PR has been generated by Mend Renovate. View repository job log here.

    opened by renovate[bot] 1
  • Update pnpm to v7.1.9

    Update pnpm to v7.1.9

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | pnpm (source) | 7.1.8 -> 7.1.9 | age | adoption | passing | confidence |


    Release Notes

    pnpm/pnpm

    v7.1.9

    Compare Source

    Patch Changes

    • When the same package is found several times in the dependency graph, correctly autoinstall its missing peer dependencies at all times #​4820.

    Our Sponsors

    #### What's Changed * fix: auto-install-peers by @​zkochan in https://github.com/pnpm/pnpm/pull/4855

    Full Changelog: https://github.com/pnpm/pnpm/compare/v7.1.8...v7.1.9


    Configuration

    πŸ“… Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    β™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    πŸ”• Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, click this checkbox.

    This PR has been generated by Mend Renovate. View repository job log here.

    opened by renovate[bot] 1
  • Update dependency tsup to v6.1.0

    Update dependency tsup to v6.1.0

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | tsup | 6.0.1 -> 6.1.0 | age | adoption | passing | confidence |


    Release Notes

    egoist/tsup

    v6.1.0

    Compare Source

    Bug Fixes
    Features
    • allow to use an object as entry with --entry flag (33a7c5f)
    • new option outExtension (b9cd8d5)
    • support custom config file with --config flag (90f2d1a)

    Configuration

    πŸ“… Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    β™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    πŸ”• Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, click this checkbox.

    This PR has been generated by Mend Renovate. View repository job log here.

    opened by renovate[bot] 1
  • Update pnpm to v7.1.8

    Update pnpm to v7.1.8

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | pnpm (source) | 7.1.7 -> 7.1.8 | age | adoption | passing | confidence |


    Release Notes

    pnpm/pnpm

    v7.1.8

    Compare Source

    Patch Changes

    • Suggest updating using Corepack, when pnpm was installed via Corepack.
    • It should be possible to install a git-hosted package that has no package.json file #​4822.
    • Fix pre-compiled pnpm binaries crashing when NODE_MODULES is set.

    Our Sponsors

    #### What's Changed * fix: pnpm pre-compiled binaries crash when NODE_MODULES is set by @​gluxon in https://github.com/pnpm/pnpm/pull/4823 * refactor(lockfile-file): Abstract LockfileFile to Lockfile conversion by @​gluxon in https://github.com/pnpm/pnpm/pull/4824 * test: update Jest by @​zkochan in https://github.com/pnpm/pnpm/pull/4644 * fix(cli): suggest to update with Corepack by @​zkochan in https://github.com/pnpm/pnpm/pull/4854 * fix: resolve manifest promise when manifest is not found by @​zkochan in https://github.com/pnpm/pnpm/pull/4826

    Full Changelog: https://github.com/pnpm/pnpm/compare/v7.1.7...v7.1.8


    Configuration

    πŸ“… Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    β™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    πŸ”• Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, click this checkbox.

    This PR has been generated by Mend Renovate. View repository job log here.

    opened by renovate[bot] 1
  • Update pnpm to v7.23.0

    Update pnpm to v7.23.0

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | pnpm (source) | 7.21.0 -> 7.23.0 | age | adoption | passing | confidence |


    Release Notes

    pnpm/pnpm

    v7.23.0

    Compare Source

    Minor Changes

    • When the resolve-peers-from-workspace-root setting is set to true, pnpm will use dependencies installed in the root of the workspace to resolve peer dependencies in any of the workspace's projects #​5882.

    Patch Changes

    • The help of the run command should list the --resume-from option.
    • Should display --include-workspace-root option on recursive command's help info.

    Our Gold Sponsors

    Our Silver Sponsors

    v7.22.0

    Compare Source

    Minor Changes

    • The pnpm list and pnpm why commands will now look through transitive dependencies of workspace: packages. A new --only-projects flag is available to only print workspace: packages.
    • pnpm exec and pnpm run command support --resume-from option. When used, the command will executed from given package #​4690.
    • Expose the npm_command environment variable to lifecycle hooks & scripts.

    Patch Changes

    • Fix a situation where pnpm list and pnpm why may not respect the --depth argument.
    • Report to the console when a git-hosted dependency is built #​5847.
    • Throw an accurate error message when trying to install a package that has no versions, or all of its versions are unpublished #​5849.
    • replace dependency is-ci by ci-info (is-ci is just a simple wrapper around ci-info).
    • Only run prepublish scripts of git-hosted dependencies, if the dependency doesn't have a main file. In this case we can assume that the dependencies has to be built.
    • Print more contextual information when a git-hosted package fails to be prepared for installation #​5847.

    Our Gold Sponsors

    Our Silver Sponsors


    Configuration

    πŸ“… Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Enabled.

    β™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    πŸ”• Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    opened by renovate[bot] 0
  • Update Rust crate async-graphql-warp to v5

    Update Rust crate async-graphql-warp to v5

    Mend Renovate

    This PR contains the following updates:

    | Package | Type | Update | Change | |---|---|---|---| | async-graphql-warp | dependencies | major | ^4.0.13 -> ^5.0.0 |


    Release Notes

    async-graphql/async-graphql

    v5.0.5

    v5.0.4

    • Fix named_list_nn #​1172
    • Add DynamicRequestExt::root_value to specify the root value for the request
    • Change CustomValidator::check returns error type from String to InputValueError<T>.
    • Add support that custom validators can set error extensions. #​1174

    v5.0.3

    v5.0.2

    v5.0.1

    v5.0.0

    • Update MSRV to 1.60.0
    • [async-graphql-axum] bump axum from 0.5.1 to 0.6.0 #​1106

    Configuration

    πŸ“… Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    β™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    πŸ”• Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    opened by renovate[bot] 1
  • Update Rust crate async-graphql to v5

    Update Rust crate async-graphql to v5

    Mend Renovate

    This PR contains the following updates:

    | Package | Type | Update | Change | |---|---|---|---| | async-graphql | dependencies | major | ^4.0.0 -> ^5.0.0 |


    Release Notes

    async-graphql/async-graphql

    v5.0.5

    v5.0.4

    • Fix named_list_nn #​1172
    • Add DynamicRequestExt::root_value to specify the root value for the request
    • Change CustomValidator::check returns error type from String to InputValueError<T>.
    • Add support that custom validators can set error extensions. #​1174

    v5.0.3

    v5.0.2

    v5.0.1

    v5.0.0

    • Update MSRV to 1.60.0
    • [async-graphql-axum] bump axum from 0.5.1 to 0.6.0 #​1106

    Configuration

    πŸ“… Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    β™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    πŸ”• Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    opened by renovate[bot] 1
  • Serve up schema when Graphiql endpoint is running

    Serve up schema when Graphiql endpoint is running

    Hey, really enjoying using this plugin. One thing I'd like to add locally during development is autocompletion/typechecking of GQL queries. There are VS Code extensions for this, but they require access to the schema. async_graphql lets you export it, but that'd be another thing I have to remember to do and commit whenever it changes.

    It looks like the extension can retrieve the schema from a URL, however. If the plugin is configured to use graphiql, I wonder if it might also serve up the SDL with the correct content-type so the extension can be connected directly to the running app for the schema? I imagine it can probably just be rolled into the graphiql config since a) it's so low-overhead and b) anyone wanting one might also appreciate the other.

    Thanks again.

    opened by ndarilek 0
  • Update Swatinem/rust-cache action to v2

    Update Swatinem/rust-cache action to v2

    Mend Renovate

    This PR contains the following updates:

    | Package | Type | Update | Change | |---|---|---|---| | Swatinem/rust-cache | action | major | v1 -> v2 |


    Configuration

    πŸ“… Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    β™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    πŸ”• Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    opened by renovate[bot] 0
  • RUSTSEC-2021-0127: serde_cbor is unmaintained

    RUSTSEC-2021-0127: serde_cbor is unmaintained

    serde_cbor is unmaintained

    | Details | | | ------------------- | ---------------------------------------------- | | Status | unmaintained | | Package | serde_cbor | | Version | 0.11.2 | | URL | https://github.com/pyfisch/cbor | | Date | 2021-08-15 |

    The serde_cbor crate is unmaintained. The author has archived the github repository.

    Alternatives proposed by the author:

    See advisory page for additional details.

    opened by github-actions[bot] 0
Releases(tauri-plugin-graphql-v2.0.1)
  • tauri-plugin-graphql-v2.0.1(Sep 22, 2022)

    [2.0.1]

    • Drop tauri >1.0.0
      • 1d5a578 Create adjust-dependency-version.md on 2022-09-22

    Hit:1 http://azure.archive.ubuntu.com/ubuntu focal InRelease Get:2 http://azure.archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB] Get:3 http://azure.archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB] Get:4 http://azure.archive.ubuntu.com/ubuntu focal-security InRelease [114 kB] Get:5 https://packages.microsoft.com/ubuntu/20.04/prod focal InRelease [10.5 kB] Hit:6 http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu focal InRelease Get:7 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [2112 kB] Get:8 http://azure.archive.ubuntu.com/ubuntu focal-updates/main Translation-en [375 kB] Get:9 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [15.9 kB] Get:10 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [1288 kB] Get:11 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [182 kB] Get:12 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [954 kB] Get:13 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [218 kB] Get:14 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [21.5 kB] Get:15 http://azure.archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [24.4 kB] Get:16 http://azure.archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7316 B] Get:17 http://azure.archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [588 B] Get:18 http://azure.archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [45.6 kB] Get:19 http://azure.archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [1420 B] Get:20 http://azure.archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [23.9 kB] Get:21 http://azure.archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [860 B] Get:22 http://azure.archive.ubuntu.com/ubuntu focal-security/main amd64 Packages [1740 kB] Get:23 http://azure.archive.ubuntu.com/ubuntu focal-security/main Translation-en [292 kB] Get:24 http://azure.archive.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [11.1 kB] Get:25 http://azure.archive.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [1200 kB] Get:26 http://azure.archive.ubuntu.com/ubuntu focal-security/restricted Translation-en [170 kB] Get:27 http://azure.archive.ubuntu.com/ubuntu focal-security/universe amd64 Packages [726 kB] Get:28 http://azure.archive.ubuntu.com/ubuntu focal-security/universe Translation-en [134 kB] Get:29 http://azure.archive.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [15.1 kB] Get:30 https://packages.microsoft.com/ubuntu/20.04/prod focal/main armhf Packages [25.9 kB] Get:31 https://packages.microsoft.com/ubuntu/20.04/prod focal/main arm64 Packages [36.3 kB] Get:32 https://packages.microsoft.com/ubuntu/20.04/prod focal/main amd64 Packages [194 kB] Fetched 10.2 MB in 2s (5452 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: bubblewrap gir1.2-atk-1.0 gir1.2-atspi-2.0 gir1.2-gtk-3.0 gir1.2-harfbuzz-0.0 gir1.2-javascriptcoregtk-4.0 gir1.2-pango-1.0 gir1.2-soup-2.4 gir1.2-webkit2-4.0 gstreamer1.0-gl gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-pulseaudio gstreamer1.0-x libaa1 libasyncns0 libatk-bridge2.0-dev libatk1.0-dev libatspi2.0-dev libavc1394-0 libbrotli-dev libcaca0 libcdparanoia0 libdatrie-dev libdbus-1-dev libdv4 libegl-dev libegl-mesa0 libegl1 libegl1-mesa-dev libepoxy-dev libflac8 libfribidi-dev libgl-dev libgl1-mesa-dev libgles-dev libgles1 libgles2 libglvnd-dev libglx-dev libgraphene-1.0-0 libgraphite2-dev libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libgtk-3-dev libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libhyphen0 libiec61883-0 libjack-jackd2-0 libjavascriptcoregtk-4.0-18 libjavascriptcoregtk-4.0-dev libmp3lame0 libmpg123-0 libopengl-dev libopengl0 libopenjp2-7 libopus0 liborc-0.4-0 libpango1.0-dev libpangoxft-1.0-0 libpsl-dev libpulse0 libraw1394-11 libsamplerate0 libshout3 libsndfile1 libsoup2.4-dev libspeex1 libtag1v5 libtag1v5-vanilla libthai-dev libtheora0 libtwolame0 libv4l-0 libv4lconvert0 libvisual-0.4-0 libvorbisenc2 libwavpack1 libwayland-bin libwayland-client0 libwayland-cursor0 libwayland-dev libwayland-egl1 libwayland-server0 libwebpdemux2 libwoff1 libxcomposite-dev libxcursor-dev libxdamage-dev libxfixes-dev libxi-dev libxinerama-dev libxkbcommon-dev libxrandr-dev libxtst-dev libxv1 pango1.0-tools wayland-protocols x11proto-input-dev x11proto-randr-dev x11proto-record-dev x11proto-xinerama-dev xdg-dbus-proxy Suggested packages: gvfs libdatrie-doc libdv-bin oss-compat libgraphite2-utils libvisual-0.4-plugins libgtk-3-doc jackd2 opus-tools libpango1.0-doc pulseaudio libraw1394-doc libsoup2.4-doc speex libthai-doc libwayland-doc gstreamer1.0-libav devhelp The following NEW packages will be installed: bubblewrap gir1.2-atk-1.0 gir1.2-atspi-2.0 gir1.2-gtk-3.0 gir1.2-harfbuzz-0.0 gir1.2-javascriptcoregtk-4.0 gir1.2-pango-1.0 gir1.2-soup-2.4 gir1.2-webkit2-4.0 gstreamer1.0-gl gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-pulseaudio gstreamer1.0-x libaa1 libasyncns0 libatk-bridge2.0-dev libatk1.0-dev libatspi2.0-dev libavc1394-0 libbrotli-dev libcaca0 libcdparanoia0 libdatrie-dev libdbus-1-dev libdv4 libegl-dev libegl-mesa0 libegl1 libegl1-mesa-dev libepoxy-dev libflac8 libfribidi-dev libgl-dev libgl1-mesa-dev libgles-dev libgles1 libgles2 libglvnd-dev libglx-dev libgraphene-1.0-0 libgraphite2-dev libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libgtk-3-dev libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libhyphen0 libiec61883-0 libjack-jackd2-0 libjavascriptcoregtk-4.0-18 libjavascriptcoregtk-4.0-dev libmp3lame0 libmpg123-0 libopengl-dev libopengl0 libopenjp2-7 libopus0 liborc-0.4-0 libpango1.0-dev libpangoxft-1.0-0 libpsl-dev libpulse0 libraw1394-11 libsamplerate0 libshout3 libsndfile1 libsoup2.4-dev libspeex1 libtag1v5 libtag1v5-vanilla libthai-dev libtheora0 libtwolame0 libv4l-0 libv4lconvert0 libvisual-0.4-0 libvorbisenc2 libwavpack1 libwayland-bin libwayland-dev libwebkit2gtk-4.0-37 libwebkit2gtk-4.0-37-gtk2 libwebkit2gtk-4.0-dev libwebkit2gtk-4.0-doc libwebpdemux2 libwoff1 libxcomposite-dev libxcursor-dev libxdamage-dev libxfixes-dev libxi-dev libxinerama-dev libxkbcommon-dev libxrandr-dev libxtst-dev libxv1 pango1.0-tools wayland-protocols x11proto-input-dev x11proto-randr-dev x11proto-record-dev x11proto-xinerama-dev xdg-dbus-proxy The following packages will be upgraded: libwayland-client0 libwayland-cursor0 libwayland-egl1 libwayland-server0 4 upgraded, 106 newly installed, 0 to remove and 61 not upgraded. Need to get 34.0 MB of archives. After this operation, 167 MB of additional disk space will be used. Get:1 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 bubblewrap amd64 0.4.0-1ubuntu4 [35.4 kB] Get:2 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-atk-1.0 amd64 2.35.1-1ubuntu2 [18.2 kB] Get:3 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-atspi-2.0 amd64 2.36.0-2 [15.1 kB] Get:4 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libpangoxft-1.0-0 amd64 1.44.7-2ubuntu4 [18.0 kB] Get:5 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-pango-1.0 amd64 1.44.7-2ubuntu4 [26.6 kB] Get:6 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-gtk-3.0 amd64 3.24.20-0ubuntu1.1 [196 kB] Get:7 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-harfbuzz-0.0 amd64 2.6.4-1ubuntu4.2 [26.4 kB] Get:8 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libjavascriptcoregtk-4.0-18 amd64 2.36.7-0ubuntu0.20.04.1 [6168 kB] Get:9 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-javascriptcoregtk-4.0 amd64 2.36.7-0ubuntu0.20.04.1 [28.8 kB] Get:10 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-soup-2.4 amd64 2.70.0-1 [27.5 kB] Get:11 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 xdg-dbus-proxy amd64 0.1.2-1 [23.0 kB] Get:12 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwayland-client0 amd64 1.18.0-1ubuntu0.1 [23.9 kB] Get:13 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwayland-server0 amd64 1.18.0-1ubuntu0.1 [31.3 kB] Get:14 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl-mesa0 amd64 21.2.6-0ubuntu0.1~20.04.2 [96.3 kB] Get:15 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl1 amd64 1.3.2-1~ubuntu0.20.04.2 [31.9 kB] Get:16 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 liborc-0.4-0 amd64 1:0.4.31-1 [188 kB] Get:17 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-plugins-base1.0-0 amd64 1.16.3-0ubuntu1.1 [740 kB] Get:18 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwayland-egl1 amd64 1.18.0-1ubuntu0.1 [5596 B] Get:19 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-gl1.0-0 amd64 1.16.3-0ubuntu1.1 [163 kB] Get:20 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libharfbuzz-icu0 amd64 2.6.4-1ubuntu4.2 [5580 B] Get:21 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libhyphen0 amd64 2.8.8-7 [27.0 kB] Get:22 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopengl0 amd64 1.3.2-1~ubuntu0.20.04.2 [29.2 kB] Get:23 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopenjp2-7 amd64 2.3.1-1ubuntu4.20.04.1 [141 kB] Get:24 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwebpdemux2 amd64 0.6.1-2ubuntu0.20.04.1 [9576 B] Get:25 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libwoff1 amd64 1.0.2-1build2 [42.0 kB] Get:26 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwebkit2gtk-4.0-37 amd64 2.36.7-0ubuntu0.20.04.1 [15.2 MB] Get:27 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-webkit2-4.0 amd64 2.36.7-0ubuntu0.20.04.1 [80.1 kB] Get:28 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libgraphene-1.0-0 amd64 1.10.0-1build2 [42.9 kB] Get:29 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-gl amd64 1.16.3-0ubuntu1.1 [109 kB] Get:30 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libcdparanoia0 amd64 3.10.2+debian-13 [46.7 kB] Get:31 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libopus0 amd64 1.3.1-0ubuntu1 [191 kB] Get:32 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15ubuntu2 [162 kB] Get:33 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libvisual-0.4-0 amd64 0.4.0-17 [99.8 kB] Get:34 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libvorbisenc2 amd64 1.3.6-2ubuntu1 [70.7 kB] Get:35 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-plugins-base amd64 1.16.3-0ubuntu1.1 [620 kB] Get:36 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libaa1 amd64 1.4p5-46 [47.3 kB] Get:37 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libraw1394-11 amd64 2.1.2-1 [30.7 kB] Get:38 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libavc1394-0 amd64 0.5.4-5 [16.2 kB] Get:39 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libcaca0 amd64 0.99.beta19-2.1ubuntu1.20.04.2 [203 kB] Get:40 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libdv4 amd64 1.0.0-12 [58.0 kB] Get:41 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libflac8 amd64 1.3.3-1build1 [103 kB] Get:42 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-plugins-good1.0-0 amd64 1.16.3-0ubuntu1.1 [68.7 kB] Get:43 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libiec61883-0 amd64 1.2.0-3 [24.3 kB] Get:44 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libsamplerate0 amd64 0.1.9-2 [939 kB] Get:45 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libjack-jackd2-0 amd64 1.9.12~dfsg-2ubuntu2 [267 kB] Get:46 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libmp3lame0 amd64 3.100-3 [133 kB] Get:47 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libmpg123-0 amd64 1.25.13-1 [124 kB] Get:48 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libspeex1 amd64 1.2~rc1.2-1.1ubuntu1.20.04.1 [53.2 kB] Get:49 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libshout3 amd64 2.4.3-1 [50.6 kB] Get:50 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtag1v5-vanilla amd64 1.11.1+dfsg.1-0.3ubuntu2 [280 kB] Get:51 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtag1v5 amd64 1.11.1+dfsg.1-0.3ubuntu2 [11.0 kB] Get:52 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtwolame0 amd64 0.4.0-2 [47.6 kB] Get:53 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libv4lconvert0 amd64 1.18.0-2build1 [76.5 kB] Get:54 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libv4l-0 amd64 1.18.0-2build1 [41.9 kB] Get:55 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwavpack1 amd64 5.2.0-1ubuntu0.1 [77.3 kB] Get:56 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-plugins-good amd64 1.16.3-0ubuntu1.1 [1745 kB] Get:57 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libasyncns0 amd64 0.8-6 [12.1 kB] Get:58 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libsndfile1 amd64 1.0.28-7ubuntu0.1 [170 kB] Get:59 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libpulse0 amd64 1:13.99.1-1ubuntu3.13 [262 kB] Get:60 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-pulseaudio amd64 1.16.3-0ubuntu1.1 [93.4 kB] Get:61 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxv1 amd64 2:1.0.11-1 [10.7 kB] Get:62 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-x amd64 1.16.3-0ubuntu1.1 [74.7 kB] Get:63 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libdbus-1-dev amd64 1.12.16-2ubuntu2.2 [167 kB] Get:64 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxfixes-dev amd64 1:5.0.3-2 [11.4 kB] Get:65 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 x11proto-input-dev all 2019.2-1ubuntu1 [2628 B] Get:66 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxi-dev amd64 2:1.7.10-0ubuntu1 [187 kB] Get:67 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 x11proto-record-dev all 2019.2-1ubuntu1 [2624 B] Get:68 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxtst-dev amd64 2:1.2.3-1 [15.2 kB] Get:69 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libatspi2.0-dev amd64 2.36.0-2 [66.7 kB] Get:70 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libatk-bridge2.0-dev amd64 2.34.2-0ubuntu2~20.04.1 [3140 B] Get:71 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libatk1.0-dev amd64 2.35.1-1ubuntu2 [95.2 kB] Get:72 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libbrotli-dev amd64 1.0.7-6ubuntu0.1 [279 kB] Get:73 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libdatrie-dev amd64 0.2.12-3 [17.6 kB] Get:74 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libglx-dev amd64 1.3.2-1~ubuntu0.20.04.2 [14.0 kB] Get:75 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [97.8 kB] Get:76 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [17.2 kB] Get:77 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles1 amd64 1.3.2-1~ubuntu0.20.04.2 [10.3 kB] Get:78 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles2 amd64 1.3.2-1~ubuntu0.20.04.2 [15.6 kB] Get:79 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles-dev amd64 1.3.2-1~ubuntu0.20.04.2 [47.9 kB] Get:80 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopengl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [3584 B] Get:81 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libglvnd-dev amd64 1.3.2-1~ubuntu0.20.04.2 [11.6 kB] Get:82 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl1-mesa-dev amd64 21.2.6-0ubuntu0.1~20.04.2 [7760 B] Get:83 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgl1-mesa-dev amd64 21.2.6-0ubuntu0.1~20.04.2 [6420 B]

    Cargo Publish

    Updating crates.io index
       Packaging tauri-plugin-graphql v2.0.1 (/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql)
       Verifying tauri-plugin-graphql v2.0.1 (/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql)
     Downloading crates ...
      Downloaded darling_macro v0.13.4
      Downloaded anyhow v1.0.65
      Downloaded rand_core v0.6.4
      Downloaded slab v0.4.7
      Downloaded smallvec v1.9.0
      Downloaded ucd-trie v0.1.5
      Downloaded xattr v0.2.3
      Downloaded block-buffer v0.10.3
      Downloaded alloc-stdlib v0.2.2
      Downloaded pkg-config v0.3.25
      Downloaded memchr v2.5.0
      Downloaded cpufeatures v0.2.5
      Downloaded crossbeam-channel v0.5.6
      Downloaded serde_with_macros v1.5.2
      Downloaded url v2.3.1
      Downloaded x11 v2.20.0
      Downloaded ctor v0.1.23
      Downloaded state v0.5.3
      Downloaded serde_with v1.14.0
      Downloaded soup2 v0.2.1
      Downloaded glib v0.15.12
      Downloaded gtk v0.15.5
      Downloaded brotli v3.3.4
      Downloaded gio v0.15.12
      Downloaded multer v2.0.4
      Downloaded glib-macros v0.15.11
      Downloaded gdk-pixbuf v0.15.11
      Downloaded async-trait v0.1.57
      Downloaded aho-corasick v0.7.19
      Downloaded png v0.17.6
      Downloaded cairo-rs v0.15.12
      Downloaded unicode-segmentation v1.10.0
      Downloaded unicode-normalization v0.1.22
      Downloaded unicode-bidi v0.3.8
      Downloaded tinyvec v1.6.0
      Downloaded sha2 v0.10.6
      Downloaded serde_repr v0.1.9
      Downloaded serde_json v1.0.85
      Downloaded semver v1.0.14
      Downloaded ryu v1.0.11
      Downloaded proc-macro-crate v1.2.1
      Downloaded pin-project-lite v0.2.9
      Downloaded percent-encoding v2.2.0
      Downloaded parking_lot_core v0.9.3
      Downloaded parking_lot v0.12.1
      Downloaded once_cell v1.15.0
      Downloaded num-traits v0.2.15
      Downloaded num-iter v0.1.43
      Downloaded num-integer v0.1.45
      Downloaded miniz_oxide v0.5.4
      Downloaded log v0.4.17
      Downloaded lock_api v0.4.9
      Downloaded itoa v1.0.3
      Downloaded indexmap v1.9.1
      Downloaded idna v0.3.0
      Downloaded globset v0.4.9
      Downloaded getrandom v0.2.7
      Downloaded generic-array v0.14.6
      Downloaded futures-executor v0.3.24
      Downloaded form_urlencoded v1.1.0
      Downloaded flate2 v1.0.24
      Downloaded filetime v0.2.17
      Downloaded fastrand v1.8.0
      Downloaded darling_core v0.13.4
      Downloaded darling v0.13.4
      Downloaded crypto-common v0.1.6
      Downloaded crossbeam-utils v0.8.11
      Downloaded alloc-no-stdlib v2.0.4
      Downloaded cfg-expr v0.10.3
      Downloaded bytes v1.2.1
       Compiling proc-macro2 v1.0.43
       Compiling quote v1.0.21
       Compiling unicode-ident v1.0.4
       Compiling syn v1.0.100
       Compiling serde_derive v1.0.144
       Compiling serde v1.0.144
       Compiling libc v0.2.133
       Compiling smallvec v1.9.0
       Compiling pkg-config v0.3.25
       Compiling autocfg v1.1.0
       Compiling heck v0.4.0
       Compiling cfg-if v1.0.0
       Compiling version-compare v0.1.0
       Compiling version_check v0.9.4
       Compiling once_cell v1.15.0
       Compiling thiserror v1.0.35
       Compiling memchr v2.5.0
       Compiling ppv-lite86 v0.2.16
       Compiling siphasher v0.3.10
       Compiling bitflags v1.3.2
       Compiling getrandom v0.1.16
       Compiling futures-core v0.3.24
       Compiling itoa v1.0.3
       Compiling futures-task v0.3.24
    
    Source code(tar.gz)
    Source code(zip)
  • tauri-plugin-graphql-v2.0.0(Sep 22, 2022)

    [2.0.0]

    • Added optional support for the GraphiQL IDE, to explore the Schema during Development. This is gated behind the graphiql feature flag.
      • 209e0b4 update changesets on 2022-09-21
    • Re-export async_graphql from crate.
      • d587a33 feat: re-export async_graphql on 2022-09-22
    • Switch from juniper to async-graphql. This adds integration with more crates, including the log, tracing and opentelemetry ecosystems. It also improves performance and simplifies the implementation.
      • f7ec823 add changeset on 2022-09-20
      • 78649ef Update switch-to-async-graphql.md on 2022-09-20
      • 209e0b4 update changesets on 2022-09-21
    Cargo Publish
    Get:1 https://packages.microsoft.com/ubuntu/20.04/prod focal InRelease [10.5 kB]
    Hit:2 http://azure.archive.ubuntu.com/ubuntu focal InRelease
    Get:3 http://azure.archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB]
    Get:4 http://azure.archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB]
    Get:5 http://azure.archive.ubuntu.com/ubuntu focal-security InRelease [114 kB]
    Hit:6 http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu focal InRelease
    Get:7 https://packages.microsoft.com/ubuntu/20.04/prod focal/main amd64 Packages [194 kB]
    Get:8 https://packages.microsoft.com/ubuntu/20.04/prod focal/main arm64 Packages [36.3 kB]
    Get:9 https://packages.microsoft.com/ubuntu/20.04/prod focal/main armhf Packages [25.9 kB]
    Get:10 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [2112 kB]
    Get:11 http://azure.archive.ubuntu.com/ubuntu focal-updates/main Translation-en [375 kB]
    Get:12 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [15.9 kB]
    Get:13 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [1288 kB]
    Get:14 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [182 kB]
    Get:15 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [954 kB]
    Get:16 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [218 kB]
    Get:17 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [21.5 kB]
    Get:18 http://azure.archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [24.4 kB]
    Get:19 http://azure.archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7316 B]
    Get:20 http://azure.archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [588 B]
    Get:21 http://azure.archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [45.6 kB]
    Get:22 http://azure.archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [1420 B]
    Get:23 http://azure.archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [23.9 kB]
    Get:24 http://azure.archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [860 B]
    Get:25 http://azure.archive.ubuntu.com/ubuntu focal-security/main amd64 Packages [1740 kB]
    Get:26 http://azure.archive.ubuntu.com/ubuntu focal-security/main Translation-en [292 kB]
    Get:27 http://azure.archive.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [11.1 kB]
    Get:28 http://azure.archive.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [1200 kB]
    Get:29 http://azure.archive.ubuntu.com/ubuntu focal-security/restricted Translation-en [170 kB]
    Get:30 http://azure.archive.ubuntu.com/ubuntu focal-security/universe amd64 Packages [726 kB]
    Get:31 http://azure.archive.ubuntu.com/ubuntu focal-security/universe Translation-en [134 kB]
    Get:32 http://azure.archive.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [15.1 kB]
    Fetched 10.2 MB in 2s (4121 kB/s)
    Reading package lists...
    Reading package lists...
    Building dependency tree...
    Reading state information...
    The following additional packages will be installed:
      bubblewrap gir1.2-atk-1.0 gir1.2-atspi-2.0 gir1.2-gtk-3.0
      gir1.2-harfbuzz-0.0 gir1.2-javascriptcoregtk-4.0 gir1.2-pango-1.0
      gir1.2-soup-2.4 gir1.2-webkit2-4.0 gstreamer1.0-gl gstreamer1.0-plugins-base
      gstreamer1.0-plugins-good gstreamer1.0-pulseaudio gstreamer1.0-x libaa1
      libasyncns0 libatk-bridge2.0-dev libatk1.0-dev libatspi2.0-dev libavc1394-0
      libbrotli-dev libcaca0 libcdparanoia0 libdatrie-dev libdbus-1-dev libdv4
      libegl-dev libegl-mesa0 libegl1 libegl1-mesa-dev libepoxy-dev libflac8
      libfribidi-dev libgl-dev libgl1-mesa-dev libgles-dev libgles1 libgles2
      libglvnd-dev libglx-dev libgraphene-1.0-0 libgraphite2-dev
      libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0
      libgstreamer-plugins-good1.0-0 libgtk-3-dev libharfbuzz-dev
      libharfbuzz-gobject0 libharfbuzz-icu0 libhyphen0 libiec61883-0
      libjack-jackd2-0 libjavascriptcoregtk-4.0-18 libjavascriptcoregtk-4.0-dev
      libmp3lame0 libmpg123-0 libopengl-dev libopengl0 libopenjp2-7 libopus0
      liborc-0.4-0 libpango1.0-dev libpangoxft-1.0-0 libpsl-dev libpulse0
      libraw1394-11 libsamplerate0 libshout3 libsndfile1 libsoup2.4-dev libspeex1
      libtag1v5 libtag1v5-vanilla libthai-dev libtheora0 libtwolame0 libv4l-0
      libv4lconvert0 libvisual-0.4-0 libvorbisenc2 libwavpack1 libwayland-bin
      libwayland-client0 libwayland-cursor0 libwayland-dev libwayland-egl1
      libwayland-server0 libwebpdemux2 libwoff1 libxcomposite-dev libxcursor-dev
      libxdamage-dev libxfixes-dev libxi-dev libxinerama-dev libxkbcommon-dev
      libxrandr-dev libxtst-dev libxv1 pango1.0-tools wayland-protocols
      x11proto-input-dev x11proto-randr-dev x11proto-record-dev
      x11proto-xinerama-dev xdg-dbus-proxy
    Suggested packages:
      gvfs libdatrie-doc libdv-bin oss-compat libgraphite2-utils
      libvisual-0.4-plugins libgtk-3-doc jackd2 opus-tools libpango1.0-doc
      pulseaudio libraw1394-doc libsoup2.4-doc speex libthai-doc libwayland-doc
      gstreamer1.0-libav devhelp
    The following NEW packages will be installed:
      bubblewrap gir1.2-atk-1.0 gir1.2-atspi-2.0 gir1.2-gtk-3.0
      gir1.2-harfbuzz-0.0 gir1.2-javascriptcoregtk-4.0 gir1.2-pango-1.0
      gir1.2-soup-2.4 gir1.2-webkit2-4.0 gstreamer1.0-gl gstreamer1.0-plugins-base
      gstreamer1.0-plugins-good gstreamer1.0-pulseaudio gstreamer1.0-x libaa1
      libasyncns0 libatk-bridge2.0-dev libatk1.0-dev libatspi2.0-dev libavc1394-0
      libbrotli-dev libcaca0 libcdparanoia0 libdatrie-dev libdbus-1-dev libdv4
      libegl-dev libegl-mesa0 libegl1 libegl1-mesa-dev libepoxy-dev libflac8
      libfribidi-dev libgl-dev libgl1-mesa-dev libgles-dev libgles1 libgles2
      libglvnd-dev libglx-dev libgraphene-1.0-0 libgraphite2-dev
      libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0
      libgstreamer-plugins-good1.0-0 libgtk-3-dev libharfbuzz-dev
      libharfbuzz-gobject0 libharfbuzz-icu0 libhyphen0 libiec61883-0
      libjack-jackd2-0 libjavascriptcoregtk-4.0-18 libjavascriptcoregtk-4.0-dev
      libmp3lame0 libmpg123-0 libopengl-dev libopengl0 libopenjp2-7 libopus0
      liborc-0.4-0 libpango1.0-dev libpangoxft-1.0-0 libpsl-dev libpulse0
      libraw1394-11 libsamplerate0 libshout3 libsndfile1 libsoup2.4-dev libspeex1
      libtag1v5 libtag1v5-vanilla libthai-dev libtheora0 libtwolame0 libv4l-0
      libv4lconvert0 libvisual-0.4-0 libvorbisenc2 libwavpack1 libwayland-bin
      libwayland-dev libwebkit2gtk-4.0-37 libwebkit2gtk-4.0-37-gtk2
      libwebkit2gtk-4.0-dev libwebkit2gtk-4.0-doc libwebpdemux2 libwoff1
      libxcomposite-dev libxcursor-dev libxdamage-dev libxfixes-dev libxi-dev
      libxinerama-dev libxkbcommon-dev libxrandr-dev libxtst-dev libxv1
      pango1.0-tools wayland-protocols x11proto-input-dev x11proto-randr-dev
      x11proto-record-dev x11proto-xinerama-dev xdg-dbus-proxy
    The following packages will be upgraded:
      libwayland-client0 libwayland-cursor0 libwayland-egl1 libwayland-server0
    4 upgraded, 106 newly installed, 0 to remove and 61 not upgraded.
    Need to get 34.0 MB of archives.
    After this operation, 167 MB of additional disk space will be used.
    Get:1 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 bubblewrap amd64 0.4.0-1ubuntu4 [35.4 kB]
    Get:2 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-atk-1.0 amd64 2.35.1-1ubuntu2 [18.2 kB]
    Get:3 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-atspi-2.0 amd64 2.36.0-2 [15.1 kB]
    Get:4 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libpangoxft-1.0-0 amd64 1.44.7-2ubuntu4 [18.0 kB]
    Get:5 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-pango-1.0 amd64 1.44.7-2ubuntu4 [26.6 kB]
    Get:6 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-gtk-3.0 amd64 3.24.20-0ubuntu1.1 [196 kB]
    Get:7 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-harfbuzz-0.0 amd64 2.6.4-1ubuntu4.2 [26.4 kB]
    Get:8 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libjavascriptcoregtk-4.0-18 amd64 2.36.7-0ubuntu0.20.04.1 [6168 kB]
    Get:9 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-javascriptcoregtk-4.0 amd64 2.36.7-0ubuntu0.20.04.1 [28.8 kB]
    Get:10 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-soup-2.4 amd64 2.70.0-1 [27.5 kB]
    Get:11 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 xdg-dbus-proxy amd64 0.1.2-1 [23.0 kB]
    Get:12 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwayland-client0 amd64 1.18.0-1ubuntu0.1 [23.9 kB]
    Get:13 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwayland-server0 amd64 1.18.0-1ubuntu0.1 [31.3 kB]
    Get:14 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl-mesa0 amd64 21.2.6-0ubuntu0.1~20.04.2 [96.3 kB]
    Get:15 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl1 amd64 1.3.2-1~ubuntu0.20.04.2 [31.9 kB]
    Get:16 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 liborc-0.4-0 amd64 1:0.4.31-1 [188 kB]
    Get:17 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-plugins-base1.0-0 amd64 1.16.3-0ubuntu1.1 [740 kB]
    Get:18 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwayland-egl1 amd64 1.18.0-1ubuntu0.1 [5596 B]
    Get:19 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-gl1.0-0 amd64 1.16.3-0ubuntu1.1 [163 kB]
    Get:20 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libharfbuzz-icu0 amd64 2.6.4-1ubuntu4.2 [5580 B]
    Get:21 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libhyphen0 amd64 2.8.8-7 [27.0 kB]
    Get:22 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopengl0 amd64 1.3.2-1~ubuntu0.20.04.2 [29.2 kB]
    Get:23 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopenjp2-7 amd64 2.3.1-1ubuntu4.20.04.1 [141 kB]
    Get:24 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwebpdemux2 amd64 0.6.1-2ubuntu0.20.04.1 [9576 B]
    Get:25 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libwoff1 amd64 1.0.2-1build2 [42.0 kB]
    Get:26 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwebkit2gtk-4.0-37 amd64 2.36.7-0ubuntu0.20.04.1 [15.2 MB]
    Get:27 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-webkit2-4.0 amd64 2.36.7-0ubuntu0.20.04.1 [80.1 kB]
    Get:28 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libgraphene-1.0-0 amd64 1.10.0-1build2 [42.9 kB]
    Get:29 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-gl amd64 1.16.3-0ubuntu1.1 [109 kB]
    Get:30 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libcdparanoia0 amd64 3.10.2+debian-13 [46.7 kB]
    Get:31 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libopus0 amd64 1.3.1-0ubuntu1 [191 kB]
    Get:32 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15ubuntu2 [162 kB]
    Get:33 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libvisual-0.4-0 amd64 0.4.0-17 [99.8 kB]
    Get:34 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libvorbisenc2 amd64 1.3.6-2ubuntu1 [70.7 kB]
    Get:35 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-plugins-base amd64 1.16.3-0ubuntu1.1 [620 kB]
    Get:36 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libaa1 amd64 1.4p5-46 [47.3 kB]
    Get:37 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libraw1394-11 amd64 2.1.2-1 [30.7 kB]
    Get:38 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libavc1394-0 amd64 0.5.4-5 [16.2 kB]
    Get:39 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libcaca0 amd64 0.99.beta19-2.1ubuntu1.20.04.2 [203 kB]
    Get:40 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libdv4 amd64 1.0.0-12 [58.0 kB]
    Get:41 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libflac8 amd64 1.3.3-1build1 [103 kB]
    Get:42 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-plugins-good1.0-0 amd64 1.16.3-0ubuntu1.1 [68.7 kB]
    Get:43 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libiec61883-0 amd64 1.2.0-3 [24.3 kB]
    Get:44 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libsamplerate0 amd64 0.1.9-2 [939 kB]
    Get:45 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libjack-jackd2-0 amd64 1.9.12~dfsg-2ubuntu2 [267 kB]
    Get:46 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libmp3lame0 amd64 3.100-3 [133 kB]
    Get:47 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libmpg123-0 amd64 1.25.13-1 [124 kB]
    Get:48 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libspeex1 amd64 1.2~rc1.2-1.1ubuntu1.20.04.1 [53.2 kB]
    Get:49 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libshout3 amd64 2.4.3-1 [50.6 kB]
    Get:50 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtag1v5-vanilla amd64 1.11.1+dfsg.1-0.3ubuntu2 [280 kB]
    Get:51 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtag1v5 amd64 1.11.1+dfsg.1-0.3ubuntu2 [11.0 kB]
    Get:52 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtwolame0 amd64 0.4.0-2 [47.6 kB]
    Get:53 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libv4lconvert0 amd64 1.18.0-2build1 [76.5 kB]
    Get:54 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libv4l-0 amd64 1.18.0-2build1 [41.9 kB]
    Get:55 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwavpack1 amd64 5.2.0-1ubuntu0.1 [77.3 kB]
    Get:56 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-plugins-good amd64 1.16.3-0ubuntu1.1 [1745 kB]
    Get:57 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libasyncns0 amd64 0.8-6 [12.1 kB]
    Get:58 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libsndfile1 amd64 1.0.28-7ubuntu0.1 [170 kB]
    Get:59 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libpulse0 amd64 1:13.99.1-1ubuntu3.13 [262 kB]
    Get:60 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-pulseaudio amd64 1.16.3-0ubuntu1.1 [93.4 kB]
    Get:61 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxv1 amd64 2:1.0.11-1 [10.7 kB]
    Get:62 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-x amd64 1.16.3-0ubuntu1.1 [74.7 kB]
    Get:63 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libdbus-1-dev amd64 1.12.16-2ubuntu2.2 [167 kB]
    Get:64 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxfixes-dev amd64 1:5.0.3-2 [11.4 kB]
    Get:65 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 x11proto-input-dev all 2019.2-1ubuntu1 [2628 B]
    Get:66 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxi-dev amd64 2:1.7.10-0ubuntu1 [187 kB]
    Get:67 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 x11proto-record-dev all 2019.2-1ubuntu1 [2624 B]
    Get:68 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxtst-dev amd64 2:1.2.3-1 [15.2 kB]
    Get:69 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libatspi2.0-dev amd64 2.36.0-2 [66.7 kB]
    Get:70 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libatk-bridge2.0-dev amd64 2.34.2-0ubuntu2~20.04.1 [3140 B]
    Get:71 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libatk1.0-dev amd64 2.35.1-1ubuntu2 [95.2 kB]
    Get:72 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libbrotli-dev amd64 1.0.7-6ubuntu0.1 [279 kB]
    Get:73 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libdatrie-dev amd64 0.2.12-3 [17.6 kB]
    Get:74 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libglx-dev amd64 1.3.2-1~ubuntu0.20.04.2 [14.0 kB]
    Get:75 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [97.8 kB]
    Get:76 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [17.2 kB]
    Get:77 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles1 amd64 1.3.2-1~ubuntu0.20.04.2 [10.3 kB]
    Get:78 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles2 amd64 1.3.2-1~ubuntu0.20.04.2 [15.6 kB]
    Get:79 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles-dev amd64 1.3.2-1~ubuntu0.20.04.2 [47.9 kB]
    Get:80 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopengl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [3584 B]
    Get:81 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libglvnd-dev amd64 1.3.2-1~ubuntu0.20.04.2 [11.6 kB]
    Get:82 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl1-mesa-dev amd64 21.2.6-0ubuntu0.1~20.04.2 [7760 B]
    Get:83 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgl1-mesa-dev amd64 21.2.6-0ubuntu0.1~20.04.2 [6420 B]
    Get:84 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libepoxy-dev amd64 1.5.4-1 [126 kB]
    
    Updating crates.io index
       Packaging tauri-plugin-graphql v2.0.0 (/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql)
       Verifying tauri-plugin-graphql v2.0.0 (/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql)
     Downloading crates ...
      Downloaded aho-corasick v0.7.19
      Downloaded unicode-bidi v0.3.8
      Downloaded unicode-normalization v0.1.22
      Downloaded url v2.3.1
      Downloaded async-trait v0.1.57
      Downloaded fastrand v1.8.0
      Downloaded getrandom v0.2.7
      Downloaded xattr v0.2.3
      Downloaded glib-macros v0.15.11
      Downloaded serde_with_macros v1.5.2
      Downloaded serde_with v1.14.0
      Downloaded x11 v2.20.0
      Downloaded state v0.5.3
      Downloaded soup2 v0.2.1
      Downloaded crossbeam-utils v0.8.11
      Downloaded cairo-rs v0.15.12
      Downloaded gtk v0.15.5
      Downloaded crypto-common v0.1.6
      Downloaded bytes v1.2.1
      Downloaded alloc-stdlib v0.2.2
      Downloaded alloc-no-stdlib v2.0.4
      Downloaded brotli v3.3.4
      Downloaded serde_repr v0.1.9
      Downloaded multer v2.0.4
      Downloaded glib v0.15.12
      Downloaded unicode-segmentation v1.10.0
      Downloaded tinyvec v1.6.0
      Downloaded smallvec v1.9.0
      Downloaded slab v0.4.7
      Downloaded sha2 v0.10.6
      Downloaded serde_json v1.0.85
      Downloaded semver v1.0.14
      Downloaded ryu v1.0.11
      Downloaded rand_core v0.6.4
      Downloaded proc-macro-crate v1.2.1
      Downloaded pkg-config v0.3.25
      Downloaded pin-project-lite v0.2.9
      Downloaded percent-encoding v2.2.0
      Downloaded parking_lot v0.12.1
      Downloaded once_cell v1.15.0
      Downloaded num-traits v0.2.15
      Downloaded num-integer v0.1.45
      Downloaded memchr v2.5.0
      Downloaded log v0.4.17
      Downloaded lock_api v0.4.9
      Downloaded indexmap v1.9.1
      Downloaded idna v0.3.0
      Downloaded globset v0.4.9
      Downloaded gio v0.15.12
      Downloaded gdk-pixbuf v0.15.11
      Downloaded generic-array v0.14.6
      Downloaded futures-executor v0.3.24
      Downloaded form_urlencoded v1.1.0
      Downloaded flate2 v1.0.24
      Downloaded filetime v0.2.17
      Downloaded cfg-expr v0.10.3
      Downloaded darling_macro v0.13.4
      Downloaded darling_core v0.13.4
      Downloaded darling v0.13.4
      Downloaded ctor v0.1.23
      Downloaded crossbeam-channel v0.5.6
      Downloaded cpufeatures v0.2.5
      Downloaded block-buffer v0.10.3
      Downloaded anyhow v1.0.65
      Downloaded ucd-trie v0.1.5
      Downloaded png v0.17.6
      Downloaded parking_lot_core v0.9.3
      Downloaded num-iter v0.1.43
      Downloaded miniz_oxide v0.5.4
      Downloaded itoa v1.0.3
       Compiling proc-macro2 v1.0.43
       Compiling unicode-ident v1.0.4
       Compiling quote v1.0.21
       Compiling syn v1.0.100
       Compiling serde_derive v1.0.144
       Compiling serde v1.0.144
       Compiling libc v0.2.133
       Compiling smallvec v1.9.0
       Compiling pkg-config v0.3.25
       Compiling autocfg v1.1.0
       Compiling heck v0.4.0
       Compiling cfg-if v1.0.0
       Compiling version-compare v0.1.0
       Compiling version_check v0.9.4
       Compiling once_cell v1.15.0
       Compiling thiserror v1.0.35
       Compiling memchr v2.5.0
       Compiling ppv-lite86 v0.2.16
       Compiling siphasher v0.3.10
       Compiling bitflags v1.3.2
       Compiling getrandom v0.1.16
       Compiling futures-core v0.3.24
       Compiling itoa v1.0.3
       Compiling fnv v1.0.7
       Compiling futures-task v0.3.24
       Compiling pin-project-lite v0.2.9
    
    Source code(tar.gz)
    Source code(zip)
  • tauri-plugin-graphql-urql-v2.0.2(Sep 22, 2022)

    [2.0.2]

    • Drop tauri >1.0.0
      • Bumped due to a bump in tauri-plugin-graphql.
      • 1d5a578 Create adjust-dependency-version.md on 2022-09-22

    pnpm Package Publish

    > [email protected] prepublishOnly /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql
    > pnpm run build
    
    
    > [email protected] build /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql
    > tsup
    
    CLI Building entry: index.ts
    CLI Using tsconfig: tsconfig.json
    CLI tsup v6.2.3
    CLI Using tsup config: /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql/tsup.config.ts
    CLI Target: node14
    CLI Cleaning output folder
    ESM Build start
    ESM dist/index.mjs 25.85 KB
    ESM ⚑️ Build success in 180ms
    DTS Build start
    DTS ⚑️ Build success in 1367ms
    DTS dist/index.d.ts 1.53 KB
    npm info it worked if it ends with ok
    npm verb cli [
    npm verb cli   '/opt/hostedtoolcache/node/14.20.0/x64/bin/node',
    npm verb cli   '/opt/hostedtoolcache/node/14.20.0/x64/bin/npm',
    npm verb cli   'publish',
    npm verb cli   '--ignore-scripts',
    npm verb cli   'tauri-plugin-graphql-urql-2.0.2.tgz',
    npm verb cli   '--access',
    npm verb cli   'public',
    npm verb cli   '--loglevel',
    npm verb cli   'silly',
    npm verb cli   '--no-git-checks'
    npm verb cli ]
    npm info using [email protected]
    npm info using [email protected]
    npm verb npm-session dd61200195888e84
    npm verb publish [ 'tauri-plugin-graphql-urql-2.0.2.tgz' ]
    npm sill tarball no local data for file:tauri-plugin-graphql-urql-2.0.2.tgz. Extracting by manifest.
    npm sill tarball no local data for file:tauri-plugin-graphql-urql-2.0.2.tgz. Extracting by manifest.
    npm sill extract file:tauri-plugin-graphql-urql-2.0.2.tgz extracted to /tmp/npm-11007-a2a617ac/tmp/fromPackage-0c8dc5d4/package (16ms)
    npm notice 
    npm notice πŸ“¦  [email protected]
    npm notice === Tarball Contents === 
    npm notice 873B   package.json   
    npm notice 2.1kB  README.md      
    npm notice 26.5kB dist/index.mjs 
    npm notice 1.6kB  dist/index.d.ts
    npm notice 1.1kB  LICENSE        
    npm notice === Tarball Details === 
    npm notice name:          tauri-plugin-graphql-urql               
    npm notice version:       2.0.2                                   
    npm notice package size:  8.8 kB                                  
    npm notice unpacked size: 32.1 kB                                 
    npm notice shasum:        042ecd004bdd4f9126c6bf137dcaef283e211104
    npm notice integrity:     sha512-sKWTneMjLmsqC[...]X+BSnxcHNVnTQ==
    npm notice total files:   5                                       
    npm notice 
    npm http fetch PUT 200 https://registry.npmjs.org/tauri-plugin-graphql-urql 7259ms
    + [email protected]
    npm verb exit [ 0, true ]
    npm timing npm Completed in 8986ms
    npm info ok
    
    Source code(tar.gz)
    Source code(zip)
  • tauri-plugin-graphql-urql-v2.0.1(Sep 22, 2022)

    [2.0.1]

    • Added optional support for the GraphiQL IDE, to explore the Schema during Development. This is gated behind the graphiql feature flag.
      • Bumped due to a bump in tauri-plugin-graphql.
      • 209e0b4 update changesets on 2022-09-21
    • Re-export async_graphql from crate.
      • Bumped due to a bump in tauri-plugin-graphql.
      • d587a33 feat: re-export async_graphql on 2022-09-22
    • Switch from juniper to async-graphql. This adds integration with more crates, including the log, tracing and opentelemetry ecosystems. It also improves performance and simplifies the implementation.
      • Bumped due to a bump in tauri-plugin-graphql.
      • f7ec823 add changeset on 2022-09-20
      • 78649ef Update switch-to-async-graphql.md on 2022-09-20
      • 209e0b4 update changesets on 2022-09-21
    pnpm Package Publish
    > [email protected] prepublishOnly /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql
    > pnpm run build
    
    
    > [email protected] build /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql
    > tsup
    
    CLI Building entry: index.ts
    CLI Using tsconfig: tsconfig.json
    CLI tsup v6.2.3
    CLI Using tsup config: /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql/tsup.config.ts
    CLI Target: node14
    CLI Cleaning output folder
    ESM Build start
    ESM dist/index.mjs 25.85 KB
    ESM ⚑️ Build success in 244ms
    DTS Build start
    DTS ⚑️ Build success in 1850ms
    DTS dist/index.d.ts 1.53 KB
    npm info it worked if it ends with ok
    npm verb cli [
    npm verb cli   '/opt/hostedtoolcache/node/14.20.0/x64/bin/node',
    npm verb cli   '/opt/hostedtoolcache/node/14.20.0/x64/bin/npm',
    npm verb cli   'publish',
    npm verb cli   '--ignore-scripts',
    npm verb cli   'tauri-plugin-graphql-urql-2.0.1.tgz',
    npm verb cli   '--access',
    npm verb cli   'public',
    npm verb cli   '--loglevel',
    npm verb cli   'silly',
    npm verb cli   '--no-git-checks'
    npm verb cli ]
    npm info using [email protected]
    npm info using [email protected]
    npm verb npm-session 9da4141a50a51bfb
    npm verb publish [ 'tauri-plugin-graphql-urql-2.0.1.tgz' ]
    npm sill tarball no local data for file:tauri-plugin-graphql-urql-2.0.1.tgz. Extracting by manifest.
    npm sill tarball no local data for file:tauri-plugin-graphql-urql-2.0.1.tgz. Extracting by manifest.
    npm sill extract file:tauri-plugin-graphql-urql-2.0.1.tgz extracted to /tmp/npm-11056-ad59d9e6/tmp/fromPackage-830bc6fb/package (21ms)
    npm notice 
    npm notice πŸ“¦  [email protected]
    npm notice === Tarball Contents === 
    npm notice 873B   package.json   
    npm notice 2.1kB  README.md      
    npm notice 26.5kB dist/index.mjs 
    npm notice 1.6kB  dist/index.d.ts
    npm notice 1.1kB  LICENSE        
    npm notice === Tarball Details === 
    npm notice name:          tauri-plugin-graphql-urql               
    npm notice version:       2.0.1                                   
    npm notice package size:  8.8 kB                                  
    npm notice unpacked size: 32.1 kB                                 
    npm notice shasum:        605f5e3b357b3c552ed62077486ee21211fa75e7
    npm notice integrity:     sha512-4Uh6Gi/hTUk3b[...]x5MhQP4VFyTJQ==
    npm notice total files:   5                                       
    npm notice 
    npm http fetch PUT 200 https://registry.npmjs.org/tauri-plugin-graphql-urql 1542ms
    + [email protected]
    npm verb exit [ 0, true ]
    npm timing npm Completed in 2373ms
    npm info ok
    
    Source code(tar.gz)
    Source code(zip)
  • tauri-plugin-graphql-v1.0.0(Jun 16, 2022)

    [1.0.0]

    • Mark as stable
      • d6ba689 Create mark-as-stable.md on 2022-06-16
    • Update Tauri to v1.0.0
      • 42d98bb add tauri changefile on 2022-04-27
      • 5f9cbdf [create-pull-request] automated change on 2022-04-27
      • 01838a3 Create update-tauri.md on 2022-05-25
      • fa12cf5 [create-pull-request] automated change on 2022-05-25
      • 9a9bde4 add changefile on 2022-06-16

    Hit:1 http://azure.archive.ubuntu.com/ubuntu focal InRelease Get:2 http://azure.archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB] Get:3 http://azure.archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB] Get:4 http://azure.archive.ubuntu.com/ubuntu focal-security InRelease [114 kB] Get:5 https://packages.microsoft.com/ubuntu/20.04/prod focal InRelease [10.5 kB] Get:6 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [1924 kB] Hit:7 http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu focal InRelease Get:8 http://azure.archive.ubuntu.com/ubuntu focal-updates/main Translation-en [348 kB] Get:9 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [15.6 kB] Get:10 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [1093 kB] Get:11 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [156 kB] Get:12 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [931 kB] Get:13 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [209 kB] Get:14 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [20.9 kB] Get:15 http://azure.archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [24.4 kB] Get:16 http://azure.archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [596 B] Get:17 http://azure.archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [44.8 kB] Get:18 http://azure.archive.ubuntu.com/ubuntu focal-backports/main Translation-en [11.3 kB] Get:19 http://azure.archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [976 B] Get:20 http://azure.archive.ubuntu.com/ubuntu focal-security/main amd64 Packages [1579 kB] Get:21 http://azure.archive.ubuntu.com/ubuntu focal-security/main Translation-en [267 kB] Get:22 http://azure.archive.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [10.6 kB] Get:23 http://azure.archive.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [1031 kB] Get:24 http://azure.archive.ubuntu.com/ubuntu focal-security/restricted Translation-en [146 kB] Get:25 http://azure.archive.ubuntu.com/ubuntu focal-security/universe amd64 Packages [708 kB] Get:26 http://azure.archive.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [14.6 kB] Get:27 http://azure.archive.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [22.2 kB] Get:28 http://azure.archive.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [512 B] Get:29 https://packages.microsoft.com/ubuntu/20.04/prod focal/main amd64 Packages [166 kB] Get:30 https://packages.microsoft.com/ubuntu/20.04/prod focal/main arm64 Packages [28.0 kB] Get:31 https://packages.microsoft.com/ubuntu/20.04/prod focal/main armhf Packages [22.8 kB] Fetched 9122 kB in 2s (5809 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: bubblewrap gir1.2-atk-1.0 gir1.2-atspi-2.0 gir1.2-gtk-3.0 gir1.2-harfbuzz-0.0 gir1.2-javascriptcoregtk-4.0 gir1.2-pango-1.0 gir1.2-soup-2.4 gir1.2-webkit2-4.0 gstreamer1.0-gl gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-pulseaudio gstreamer1.0-x libaa1 libasyncns0 libatk-bridge2.0-dev libatk1.0-dev libatspi2.0-dev libavc1394-0 libbrotli-dev libcaca0 libcdparanoia0 libdatrie-dev libdbus-1-dev libdv4 libegl-dev libegl-mesa0 libegl1 libegl1-mesa-dev libepoxy-dev libflac8 libfribidi-dev libgl-dev libgl1-mesa-dev libgles-dev libgles1 libgles2 libglvnd-dev libglx-dev libgraphene-1.0-0 libgraphite2-dev libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libgtk-3-dev libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libhyphen0 libiec61883-0 libjack-jackd2-0 libjavascriptcoregtk-4.0-18 libjavascriptcoregtk-4.0-dev libmp3lame0 libmpg123-0 libopengl-dev libopengl0 libopenjp2-7 libopus0 liborc-0.4-0 libpango1.0-dev libpangoxft-1.0-0 libpsl-dev libpulse0 libraw1394-11 libsamplerate0 libshout3 libsndfile1 libsoup2.4-dev libspeex1 libtag1v5 libtag1v5-vanilla libthai-dev libtheora0 libtwolame0 libv4l-0 libv4lconvert0 libvisual-0.4-0 libvorbisenc2 libwavpack1 libwayland-bin libwayland-dev libwebpdemux2 libwoff1 libxcomposite-dev libxcursor-dev libxdamage-dev libxfixes-dev libxi-dev libxinerama-dev libxkbcommon-dev libxrandr-dev libxtst-dev pango1.0-tools wayland-protocols x11proto-input-dev x11proto-randr-dev x11proto-record-dev x11proto-xinerama-dev xdg-dbus-proxy Suggested packages: gvfs libdatrie-doc libdv-bin oss-compat libgraphite2-utils libvisual-0.4-plugins libgtk-3-doc jackd2 opus-tools libpango1.0-doc pulseaudio libraw1394-doc libsoup2.4-doc speex libthai-doc libwayland-doc gstreamer1.0-libav devhelp The following NEW packages will be installed: bubblewrap gir1.2-atk-1.0 gir1.2-atspi-2.0 gir1.2-gtk-3.0 gir1.2-harfbuzz-0.0 gir1.2-javascriptcoregtk-4.0 gir1.2-pango-1.0 gir1.2-soup-2.4 gir1.2-webkit2-4.0 gstreamer1.0-gl gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-pulseaudio gstreamer1.0-x libaa1 libasyncns0 libatk-bridge2.0-dev libatk1.0-dev libatspi2.0-dev libavc1394-0 libbrotli-dev libcaca0 libcdparanoia0 libdatrie-dev libdbus-1-dev libdv4 libegl-dev libegl-mesa0 libegl1 libegl1-mesa-dev libepoxy-dev libflac8 libfribidi-dev libgl-dev libgl1-mesa-dev libgles-dev libgles1 libgles2 libglvnd-dev libglx-dev libgraphene-1.0-0 libgraphite2-dev libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libgtk-3-dev libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libhyphen0 libiec61883-0 libjack-jackd2-0 libjavascriptcoregtk-4.0-18 libjavascriptcoregtk-4.0-dev libmp3lame0 libmpg123-0 libopengl-dev libopengl0 libopenjp2-7 libopus0 liborc-0.4-0 libpango1.0-dev libpangoxft-1.0-0 libpsl-dev libpulse0 libraw1394-11 libsamplerate0 libshout3 libsndfile1 libsoup2.4-dev libspeex1 libtag1v5 libtag1v5-vanilla libthai-dev libtheora0 libtwolame0 libv4l-0 libv4lconvert0 libvisual-0.4-0 libvorbisenc2 libwavpack1 libwayland-bin libwayland-dev libwebkit2gtk-4.0-37 libwebkit2gtk-4.0-37-gtk2 libwebkit2gtk-4.0-dev libwebkit2gtk-4.0-doc libwebpdemux2 libwoff1 libxcomposite-dev libxcursor-dev libxdamage-dev libxfixes-dev libxi-dev libxinerama-dev libxkbcommon-dev libxrandr-dev libxtst-dev pango1.0-tools wayland-protocols x11proto-input-dev x11proto-randr-dev x11proto-record-dev x11proto-xinerama-dev xdg-dbus-proxy 0 upgraded, 105 newly installed, 0 to remove and 28 not upgraded. Need to get 33.9 MB of archives. After this operation, 167 MB of additional disk space will be used. Get:1 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 bubblewrap amd64 0.4.0-1ubuntu4 [35.4 kB] Get:2 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-atk-1.0 amd64 2.35.1-1ubuntu2 [18.2 kB] Get:3 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-atspi-2.0 amd64 2.36.0-2 [15.1 kB] Get:4 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libpangoxft-1.0-0 amd64 1.44.7-2ubuntu4 [18.0 kB] Get:5 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-pango-1.0 amd64 1.44.7-2ubuntu4 [26.6 kB] Get:6 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-gtk-3.0 amd64 3.24.20-0ubuntu1.1 [196 kB] Get:7 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-harfbuzz-0.0 amd64 2.6.4-1ubuntu4 [26.3 kB] Get:8 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libjavascriptcoregtk-4.0-18 amd64 2.36.3-0ubuntu0.20.04.1 [6166 kB] Get:9 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-javascriptcoregtk-4.0 amd64 2.36.3-0ubuntu0.20.04.1 [28.8 kB] Get:10 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-soup-2.4 amd64 2.70.0-1 [27.5 kB] Get:11 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 xdg-dbus-proxy amd64 0.1.2-1 [23.0 kB] Get:12 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl-mesa0 amd64 21.2.6-0ubuntu0.1~20.04.2 [96.3 kB] Get:13 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl1 amd64 1.3.2-1~ubuntu0.20.04.2 [31.9 kB] Get:14 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 liborc-0.4-0 amd64 1:0.4.31-1 [188 kB] Get:15 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-plugins-base1.0-0 amd64 1.16.2-4ubuntu0.1 [735 kB] Get:16 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-gl1.0-0 amd64 1.16.2-4ubuntu0.1 [162 kB] Get:17 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libharfbuzz-icu0 amd64 2.6.4-1ubuntu4 [5580 B] Get:18 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libhyphen0 amd64 2.8.8-7 [27.0 kB] Get:19 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopengl0 amd64 1.3.2-1~ubuntu0.20.04.2 [29.2 kB] Get:20 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopenjp2-7 amd64 2.3.1-1ubuntu4.20.04.1 [141 kB] Get:21 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwebpdemux2 amd64 0.6.1-2ubuntu0.20.04.1 [9576 B] Get:22 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libwoff1 amd64 1.0.2-1build2 [42.0 kB] Get:23 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwebkit2gtk-4.0-37 amd64 2.36.3-0ubuntu0.20.04.1 [15.1 MB] Get:24 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-webkit2-4.0 amd64 2.36.3-0ubuntu0.20.04.1 [80.2 kB] Get:25 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libgraphene-1.0-0 amd64 1.10.0-1build2 [42.9 kB] Get:26 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-gl amd64 1.16.2-4ubuntu0.1 [109 kB] Get:27 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libcdparanoia0 amd64 3.10.2+debian-13 [46.7 kB] Get:28 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libopus0 amd64 1.3.1-0ubuntu1 [191 kB] Get:29 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15ubuntu2 [162 kB] Get:30 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libvisual-0.4-0 amd64 0.4.0-17 [99.8 kB] Get:31 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libvorbisenc2 amd64 1.3.6-2ubuntu1 [70.7 kB] Get:32 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-plugins-base amd64 1.16.2-4ubuntu0.1 [620 kB] Get:33 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libaa1 amd64 1.4p5-46 [47.3 kB] Get:34 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libraw1394-11 amd64 2.1.2-1 [30.7 kB] Get:35 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libavc1394-0 amd64 0.5.4-5 [16.2 kB] Get:36 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libcaca0 amd64 0.99.beta19-2.1ubuntu1.20.04.2 [203 kB] Get:37 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libdv4 amd64 1.0.0-12 [58.0 kB] Get:38 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libflac8 amd64 1.3.3-1build1 [103 kB] Get:39 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-plugins-good1.0-0 amd64 1.16.2-1ubuntu2.1 [63.7 kB] Get:40 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libiec61883-0 amd64 1.2.0-3 [24.3 kB] Get:41 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libsamplerate0 amd64 0.1.9-2 [939 kB] Get:42 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libjack-jackd2-0 amd64 1.9.12~dfsg-2ubuntu2 [267 kB] Get:43 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libmp3lame0 amd64 3.100-3 [133 kB] Get:44 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libmpg123-0 amd64 1.25.13-1 [124 kB] Get:45 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libspeex1 amd64 1.2~rc1.2-1.1ubuntu1.20.04.1 [53.2 kB] Get:46 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libshout3 amd64 2.4.3-1 [50.6 kB] Get:47 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtag1v5-vanilla amd64 1.11.1+dfsg.1-0.3ubuntu2 [280 kB] Get:48 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtag1v5 amd64 1.11.1+dfsg.1-0.3ubuntu2 [11.0 kB] Get:49 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtwolame0 amd64 0.4.0-2 [47.6 kB] Get:50 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libv4lconvert0 amd64 1.18.0-2build1 [76.5 kB] Get:51 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libv4l-0 amd64 1.18.0-2build1 [41.9 kB] Get:52 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwavpack1 amd64 5.2.0-1ubuntu0.1 [77.3 kB] Get:53 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-plugins-good amd64 1.16.2-1ubuntu2.1 [1739 kB] Get:54 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libasyncns0 amd64 0.8-6 [12.1 kB] Get:55 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libsndfile1 amd64 1.0.28-7ubuntu0.1 [170 kB] Get:56 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libpulse0 amd64 1:13.99.1-1ubuntu3.13 [262 kB] Get:57 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-pulseaudio amd64 1.16.2-1ubuntu2.1 [88.2 kB] Get:58 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-x amd64 1.16.2-4ubuntu0.1 [74.9 kB] Get:59 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libdbus-1-dev amd64 1.12.16-2ubuntu2.2 [167 kB] Get:60 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxfixes-dev amd64 1:5.0.3-2 [11.4 kB] Get:61 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 x11proto-input-dev all 2019.2-1ubuntu1 [2628 B] Get:62 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxi-dev amd64 2:1.7.10-0ubuntu1 [187 kB] Get:63 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 x11proto-record-dev all 2019.2-1ubuntu1 [2624 B] Get:64 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxtst-dev amd64 2:1.2.3-1 [15.2 kB] Get:65 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libatspi2.0-dev amd64 2.36.0-2 [66.7 kB] Get:66 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libatk-bridge2.0-dev amd64 2.34.2-0ubuntu2~20.04.1 [3140 B] Get:67 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libatk1.0-dev amd64 2.35.1-1ubuntu2 [95.2 kB] Get:68 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libbrotli-dev amd64 1.0.7-6ubuntu0.1 [279 kB] Get:69 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libdatrie-dev amd64 0.2.12-3 [17.6 kB] Get:70 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libglx-dev amd64 1.3.2-1~ubuntu0.20.04.2 [14.0 kB] Get:71 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [97.8 kB] Get:72 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [17.2 kB] Get:73 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles1 amd64 1.3.2-1~ubuntu0.20.04.2 [10.3 kB] Get:74 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles2 amd64 1.3.2-1~ubuntu0.20.04.2 [15.6 kB] Get:75 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles-dev amd64 1.3.2-1~ubuntu0.20.04.2 [47.9 kB] Get:76 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopengl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [3584 B] Get:77 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libglvnd-dev amd64 1.3.2-1~ubuntu0.20.04.2 [11.6 kB] Get:78 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl1-mesa-dev amd64 21.2.6-0ubuntu0.1~20.04.2 [7760 B] Get:79 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgl1-mesa-dev amd64 21.2.6-0ubuntu0.1~20.04.2 [6420 B] Get:80 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libepoxy-dev amd64 1.5.4-1 [126 kB] Get:81 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libfribidi-dev amd64 1.0.8-2ubuntu0.1 [62.3 kB] Get:82 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libgraphite2-dev amd64 1.3.13-11build1 [14.7 kB] Get:83 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libharfbuzz-gobject0 amd64 2.6.4-1ubuntu4 [20.4 kB]

    Cargo Publish

    Updating crates.io index
       Packaging tauri-plugin-graphql v1.0.0 (/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql)
       Verifying tauri-plugin-graphql v1.0.0 (/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql)
     Downloading crates ...
      Downloaded tauri-codegen v1.0.0
      Downloaded tauri-macros v1.0.0
      Downloaded state v0.5.3
      Downloaded num-iter v0.1.43
      Downloaded num-integer v0.1.45
      Downloaded log v0.4.17
      Downloaded quote v1.0.18
      Downloaded parking_lot_core v0.9.3
      Downloaded http v0.2.8
      Downloaded tauri-utils v1.0.0
      Downloaded serde_with v1.14.0
      Downloaded glib-macros v0.15.11
      Downloaded glib v0.15.11
      Downloaded gdk-pixbuf v0.15.11
      Downloaded cairo-rs v0.15.11
      Downloaded darling_macro v0.13.4
      Downloaded parking_lot v0.12.1
      Downloaded async-trait v0.1.56
      Downloaded xattr v0.2.3
      Downloaded uuid v1.1.2
      Downloaded unicode-bidi v0.3.8
      Downloaded anyhow v1.0.57
      Downloaded darling v0.13.4
      Downloaded toml v0.5.9
      Downloaded filetime v0.2.16
      Downloaded unicode-ident v1.0.1
      Downloaded getrandom v0.2.7
      Downloaded thiserror v1.0.31
      Downloaded globset v0.4.9
      Downloaded indexmap v1.8.2
      Downloaded flate2 v1.0.24
      Downloaded gio v0.15.11
      Downloaded tauri-runtime v0.9.0
      Downloaded serde_repr v0.1.8
      Downloaded once_cell v1.12.0
      Downloaded serde_with_macros v1.5.2
      Downloaded pin-project-lite v0.2.9
      Downloaded semver v1.0.10
      Downloaded proc-macro2 v1.0.39
      Downloaded tauri-runtime-wry v0.9.0
      Downloaded thiserror-impl v1.0.31
      Downloaded tinyvec v1.6.0
      Downloaded slab v0.4.6
      Downloaded regex v1.5.6
      Downloaded syn v1.0.96
      Downloaded ryu v1.0.10
      Downloaded miniz_oxide v0.5.3
      Downloaded num-traits v0.2.15
      Downloaded tokio v1.19.2
      Downloaded regex-syntax v0.6.26
      Downloaded gtk v0.15.5
      Downloaded libc v0.2.126
      Downloaded memchr v2.5.0
      Downloaded pkg-config v0.3.25
      Downloaded lock_api v0.4.7
      Downloaded itoa v1.0.2
      Downloaded tauri v1.0.0
      Downloaded soup2 v0.2.1
      Downloaded darling_core v0.13.4
      Downloaded cfg-expr v0.10.3
      Downloaded wry v0.18.3
      Downloaded brotli v3.3.4
      Downloaded tao v0.11.2
       Compiling proc-macro2 v1.0.39
       Compiling unicode-ident v1.0.1
       Compiling syn v1.0.96
       Compiling serde_derive v1.0.137
       Compiling serde v1.0.137
       Compiling libc v0.2.126
       Compiling smallvec v1.8.0
       Compiling pkg-config v0.3.25
       Compiling heck v0.4.0
       Compiling cfg-if v1.0.0
       Compiling version-compare v0.1.0
       Compiling autocfg v1.1.0
       Compiling version_check v0.9.4
       Compiling memchr v2.5.0
       Compiling once_cell v1.12.0
       Compiling ppv-lite86 v0.2.16
       Compiling bitflags v1.3.2
       Compiling siphasher v0.3.10
       Compiling getrandom v0.1.16
       Compiling futures-core v0.3.21
       Compiling futures-task v0.3.21
       Compiling pin-project-lite v0.2.9
       Compiling futures-channel v0.3.21
       Compiling futures-sink v0.3.21
       Compiling futures-io v0.3.21
       Compiling futures-util v0.3.21
       Compiling slab v0.4.6
       Compiling pin-utils v0.1.0
       Compiling anyhow v1.0.57
       Compiling proc-macro-hack v0.5.19
       Compiling log v0.4.17
       Compiling unicode-segmentation v1.9.0
    
    Source code(tar.gz)
    Source code(zip)
  • tauri-plugin-graphql-urql-v0.2.6(Jun 16, 2022)

    [0.2.6]

    • Update Tauri to v1.0.0
      • 42d98bb add tauri changefile on 2022-04-27
      • 5f9cbdf [create-pull-request] automated change on 2022-04-27
      • 01838a3 Create update-tauri.md on 2022-05-25
      • fa12cf5 [create-pull-request] automated change on 2022-05-25
      • 9a9bde4 add changefile on 2022-06-16

    pnpm Package Publish

    > [email protected] prepublishOnly /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql
    > pnpm run build
    
    
    > [email protected] build /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql
    > tsup
    
    CLI Building entry: index.ts
    CLI Using tsconfig: tsconfig.json
    CLI tsup v6.1.2
    CLI Using tsup config: /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql/tsup.config.ts
    CLI Target: node14
    CLI Cleaning output folder
    ESM Build start
    ESM ⚑️ Build success in 179ms
    ESM dist/index.mjs 26.21 KB
    DTS Build start
    DTS ⚑️ Build success in 1431ms
    DTS dist/index.d.ts 1.53 KB
    npm info it worked if it ends with ok
    npm verb cli [
    npm verb cli   '/opt/hostedtoolcache/node/14.19.3/x64/bin/node',
    npm verb cli   '/opt/hostedtoolcache/node/14.19.3/x64/bin/npm',
    npm verb cli   'publish',
    npm verb cli   '--ignore-scripts',
    npm verb cli   'tauri-plugin-graphql-urql-0.2.6.tgz',
    npm verb cli   '--access',
    npm verb cli   'public',
    npm verb cli   '--loglevel',
    npm verb cli   'silly',
    npm verb cli   '--no-git-checks'
    npm verb cli ]
    npm info using [email protected]
    npm info using [email protected]
    npm verb npm-session 18c2eead0852a420
    npm verb publish [ 'tauri-plugin-graphql-urql-0.2.6.tgz' ]
    npm sill tarball no local data for file:tauri-plugin-graphql-urql-0.2.6.tgz. Extracting by manifest.
    npm sill tarball no local data for file:tauri-plugin-graphql-urql-0.2.6.tgz. Extracting by manifest.
    npm sill extract file:tauri-plugin-graphql-urql-0.2.6.tgz extracted to /tmp/npm-10504-3d827ea7/tmp/fromPackage-53458edf/package (16ms)
    npm notice 
    npm notice πŸ“¦  [email protected]
    npm notice === Tarball Contents === 
    npm notice 874B   package.json   
    npm notice 2.1kB  README.md      
    npm notice 26.8kB dist/index.mjs 
    npm notice 1.6kB  dist/index.d.ts
    npm notice 1.1kB  LICENSE        
    npm notice === Tarball Details === 
    npm notice name:          tauri-plugin-graphql-urql               
    npm notice version:       0.2.6                                   
    npm notice package size:  9.0 kB                                  
    npm notice unpacked size: 32.5 kB                                 
    npm notice shasum:        f65a9c966fc26e8d2687ca802bcdaae6e42644bc
    npm notice integrity:     sha512-WHAmKFS8hkokH[...]Ppvca+npFANbw==
    npm notice total files:   5                                       
    npm notice 
    npm http fetch PUT 200 https://registry.npmjs.org/tauri-plugin-graphql-urql 1021ms
    + [email protected]
    npm verb exit [ 0, true ]
    npm timing npm Completed in 3342ms
    npm info ok
    
    Source code(tar.gz)
    Source code(zip)
  • tauri-plugin-graphql-v0.2.4(May 25, 2022)

    [0.2.4]

    • Update Tauri to v1.0.0-rc.12
      • 42d98bb add tauri changefile on 2022-04-27
      • 5f9cbdf [create-pull-request] automated change on 2022-04-27
      • 01838a3 Create update-tauri.md on 2022-05-25

    Hit:1 http://azure.archive.ubuntu.com/ubuntu focal InRelease Get:2 http://azure.archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB] Get:3 http://azure.archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB] Get:4 http://azure.archive.ubuntu.com/ubuntu focal-security InRelease [114 kB] Get:5 https://packages.microsoft.com/ubuntu/20.04/prod focal InRelease [10.5 kB] Get:6 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [1811 kB] Hit:7 http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu focal InRelease Get:8 http://azure.archive.ubuntu.com/ubuntu focal-updates/main Translation-en [333 kB] Get:9 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [15.2 kB] Get:10 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [995 kB] Get:11 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [142 kB] Get:12 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [520 B] Get:13 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [924 kB] Get:14 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [207 kB] Get:15 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [20.7 kB] Get:16 http://azure.archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [24.4 kB] Get:17 http://azure.archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [596 B] Get:18 http://azure.archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [44.5 kB] Get:19 http://azure.archive.ubuntu.com/ubuntu focal-backports/main Translation-en [10.9 kB] Get:20 http://azure.archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [980 B] Get:21 http://azure.archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [23.6 kB] Get:22 http://azure.archive.ubuntu.com/ubuntu focal-backports/universe Translation-en [15.9 kB] Get:23 http://azure.archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [860 B] Get:24 http://azure.archive.ubuntu.com/ubuntu focal-security/main amd64 Packages [1470 kB] Get:25 http://azure.archive.ubuntu.com/ubuntu focal-security/main Translation-en [252 kB] Get:26 http://azure.archive.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [10.2 kB] Get:27 http://azure.archive.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [933 kB] Get:28 http://azure.archive.ubuntu.com/ubuntu focal-security/restricted Translation-en [132 kB] Get:29 http://azure.archive.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [520 B] Get:30 http://azure.archive.ubuntu.com/ubuntu focal-security/universe amd64 Packages [703 kB] Get:31 https://packages.microsoft.com/ubuntu/20.04/prod focal/main armhf Packages [21.7 kB] Get:32 http://azure.archive.ubuntu.com/ubuntu focal-security/universe Translation-en [126 kB] Get:33 http://azure.archive.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [14.4 kB] Get:34 http://azure.archive.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [22.2 kB] Get:35 http://azure.archive.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5376 B] Get:36 http://azure.archive.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [512 B] Get:37 https://packages.microsoft.com/ubuntu/20.04/prod focal/main amd64 Packages [161 kB] Get:38 https://packages.microsoft.com/ubuntu/20.04/prod focal/main arm64 Packages [26.8 kB] Fetched 8795 kB in 2s (4811 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: bubblewrap gir1.2-atk-1.0 gir1.2-atspi-2.0 gir1.2-gtk-3.0 gir1.2-harfbuzz-0.0 gir1.2-javascriptcoregtk-4.0 gir1.2-pango-1.0 gir1.2-soup-2.4 gir1.2-webkit2-4.0 gstreamer1.0-gl gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-pulseaudio gstreamer1.0-x libaa1 libasyncns0 libatk-bridge2.0-dev libatk1.0-dev libatspi2.0-dev libavc1394-0 libbrotli-dev libcaca0 libcdparanoia0 libdatrie-dev libdbus-1-dev libdv4 libegl-dev libegl-mesa0 libegl1 libegl1-mesa-dev libepoxy-dev libflac8 libfribidi-dev libgl-dev libgl1-mesa-dev libgles-dev libgles1 libgles2 libglvnd-dev libglx-dev libgraphene-1.0-0 libgraphite2-dev libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libgtk-3-dev libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libhyphen0 libiec61883-0 libjack-jackd2-0 libjavascriptcoregtk-4.0-18 libjavascriptcoregtk-4.0-dev libmp3lame0 libmpg123-0 libopengl-dev libopengl0 libopenjp2-7 libopus0 liborc-0.4-0 libpango1.0-dev libpangoxft-1.0-0 libpsl-dev libpulse0 libraw1394-11 libsamplerate0 libshout3 libsndfile1 libsoup2.4-dev libspeex1 libtag1v5 libtag1v5-vanilla libthai-dev libtheora0 libtwolame0 libv4l-0 libv4lconvert0 libvisual-0.4-0 libvorbisenc2 libwavpack1 libwayland-bin libwayland-dev libwebpdemux2 libwoff1 libxcomposite-dev libxcursor-dev libxdamage-dev libxfixes-dev libxi-dev libxinerama-dev libxkbcommon-dev libxrandr-dev libxtst-dev pango1.0-tools wayland-protocols x11proto-input-dev x11proto-randr-dev x11proto-record-dev x11proto-xinerama-dev xdg-dbus-proxy Suggested packages: gvfs libdatrie-doc libdv-bin oss-compat libgraphite2-utils libvisual-0.4-plugins libgtk-3-doc jackd2 opus-tools libpango1.0-doc pulseaudio libraw1394-doc libsoup2.4-doc speex libthai-doc libwayland-doc gstreamer1.0-libav devhelp The following NEW packages will be installed: bubblewrap gir1.2-atk-1.0 gir1.2-atspi-2.0 gir1.2-gtk-3.0 gir1.2-harfbuzz-0.0 gir1.2-javascriptcoregtk-4.0 gir1.2-pango-1.0 gir1.2-soup-2.4 gir1.2-webkit2-4.0 gstreamer1.0-gl gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-pulseaudio gstreamer1.0-x libaa1 libasyncns0 libatk-bridge2.0-dev libatk1.0-dev libatspi2.0-dev libavc1394-0 libbrotli-dev libcaca0 libcdparanoia0 libdatrie-dev libdbus-1-dev libdv4 libegl-dev libegl-mesa0 libegl1 libegl1-mesa-dev libepoxy-dev libflac8 libfribidi-dev libgl-dev libgl1-mesa-dev libgles-dev libgles1 libgles2 libglvnd-dev libglx-dev libgraphene-1.0-0 libgraphite2-dev libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libgtk-3-dev libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libhyphen0 libiec61883-0 libjack-jackd2-0 libjavascriptcoregtk-4.0-18 libjavascriptcoregtk-4.0-dev libmp3lame0 libmpg123-0 libopengl-dev libopengl0 libopenjp2-7 libopus0 liborc-0.4-0 libpango1.0-dev libpangoxft-1.0-0 libpsl-dev libpulse0 libraw1394-11 libsamplerate0 libshout3 libsndfile1 libsoup2.4-dev libspeex1 libtag1v5 libtag1v5-vanilla libthai-dev libtheora0 libtwolame0 libv4l-0 libv4lconvert0 libvisual-0.4-0 libvorbisenc2 libwavpack1 libwayland-bin libwayland-dev libwebkit2gtk-4.0-37 libwebkit2gtk-4.0-37-gtk2 libwebkit2gtk-4.0-dev libwebkit2gtk-4.0-doc libwebpdemux2 libwoff1 libxcomposite-dev libxcursor-dev libxdamage-dev libxfixes-dev libxi-dev libxinerama-dev libxkbcommon-dev libxrandr-dev libxtst-dev pango1.0-tools wayland-protocols x11proto-input-dev x11proto-randr-dev x11proto-record-dev x11proto-xinerama-dev xdg-dbus-proxy 0 upgraded, 105 newly installed, 0 to remove and 49 not upgraded. Need to get 34.0 MB of archives. After this operation, 167 MB of additional disk space will be used. Get:1 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 bubblewrap amd64 0.4.0-1ubuntu4 [35.4 kB] Get:2 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-atk-1.0 amd64 2.35.1-1ubuntu2 [18.2 kB] Get:3 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-atspi-2.0 amd64 2.36.0-2 [15.1 kB] Get:4 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libpangoxft-1.0-0 amd64 1.44.7-2ubuntu4 [18.0 kB] Get:5 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-pango-1.0 amd64 1.44.7-2ubuntu4 [26.6 kB] Get:6 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-gtk-3.0 amd64 3.24.20-0ubuntu1.1 [196 kB] Get:7 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-harfbuzz-0.0 amd64 2.6.4-1ubuntu4 [26.3 kB] Get:8 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libjavascriptcoregtk-4.0-18 amd64 2.36.2-0ubuntu0.20.04.1 [6165 kB] Get:9 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-javascriptcoregtk-4.0 amd64 2.36.2-0ubuntu0.20.04.1 [28.8 kB] Get:10 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-soup-2.4 amd64 2.70.0-1 [27.5 kB] Get:11 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 xdg-dbus-proxy amd64 0.1.2-1 [23.0 kB] Get:12 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl-mesa0 amd64 21.2.6-0ubuntu0.1~20.04.2 [96.3 kB] Get:13 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl1 amd64 1.3.2-1~ubuntu0.20.04.2 [31.9 kB] Get:14 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 liborc-0.4-0 amd64 1:0.4.31-1 [188 kB] Get:15 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-plugins-base1.0-0 amd64 1.16.2-4ubuntu0.1 [735 kB] Get:16 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-gl1.0-0 amd64 1.16.2-4ubuntu0.1 [162 kB] Get:17 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libharfbuzz-icu0 amd64 2.6.4-1ubuntu4 [5580 B] Get:18 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libhyphen0 amd64 2.8.8-7 [27.0 kB] Get:19 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopengl0 amd64 1.3.2-1~ubuntu0.20.04.2 [29.2 kB] Get:20 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopenjp2-7 amd64 2.3.1-1ubuntu4.20.04.1 [141 kB] Get:21 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwebpdemux2 amd64 0.6.1-2ubuntu0.20.04.1 [9576 B] Get:22 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libwoff1 amd64 1.0.2-1build2 [42.0 kB] Get:23 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwebkit2gtk-4.0-37 amd64 2.36.2-0ubuntu0.20.04.1 [15.2 MB] Get:24 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-webkit2-4.0 amd64 2.36.2-0ubuntu0.20.04.1 [80.1 kB] Get:25 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libgraphene-1.0-0 amd64 1.10.0-1build2 [42.9 kB] Get:26 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-gl amd64 1.16.2-4ubuntu0.1 [109 kB] Get:27 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libcdparanoia0 amd64 3.10.2+debian-13 [46.7 kB] Get:28 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libopus0 amd64 1.3.1-0ubuntu1 [191 kB] Get:29 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15ubuntu2 [162 kB] Get:30 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libvisual-0.4-0 amd64 0.4.0-17 [99.8 kB] Get:31 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libvorbisenc2 amd64 1.3.6-2ubuntu1 [70.7 kB] Get:32 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-plugins-base amd64 1.16.2-4ubuntu0.1 [620 kB] Get:33 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libaa1 amd64 1.4p5-46 [47.3 kB] Get:34 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libraw1394-11 amd64 2.1.2-1 [30.7 kB] Get:35 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libavc1394-0 amd64 0.5.4-5 [16.2 kB] Get:36 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libcaca0 amd64 0.99.beta19-2.1ubuntu1.20.04.2 [203 kB] Get:37 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libdv4 amd64 1.0.0-12 [58.0 kB] Get:38 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libflac8 amd64 1.3.3-1build1 [103 kB] Get:39 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-plugins-good1.0-0 amd64 1.16.2-1ubuntu2.1 [63.7 kB] Get:40 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libiec61883-0 amd64 1.2.0-3 [24.3 kB] Get:41 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libsamplerate0 amd64 0.1.9-2 [939 kB] Get:42 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libjack-jackd2-0 amd64 1.9.12~dfsg-2ubuntu2 [267 kB] Get:43 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libmp3lame0 amd64 3.100-3 [133 kB] Get:44 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libmpg123-0 amd64 1.25.13-1 [124 kB] Get:45 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libspeex1 amd64 1.2~rc1.2-1.1ubuntu1.20.04.1 [53.2 kB] Get:46 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libshout3 amd64 2.4.3-1 [50.6 kB] Get:47 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtag1v5-vanilla amd64 1.11.1+dfsg.1-0.3ubuntu2 [280 kB] Get:48 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtag1v5 amd64 1.11.1+dfsg.1-0.3ubuntu2 [11.0 kB] Get:49 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtwolame0 amd64 0.4.0-2 [47.6 kB] Get:50 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libv4lconvert0 amd64 1.18.0-2build1 [76.5 kB] Get:51 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libv4l-0 amd64 1.18.0-2build1 [41.9 kB] Get:52 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwavpack1 amd64 5.2.0-1ubuntu0.1 [77.3 kB] Get:53 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-plugins-good amd64 1.16.2-1ubuntu2.1 [1739 kB] Get:54 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libasyncns0 amd64 0.8-6 [12.1 kB] Get:55 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libsndfile1 amd64 1.0.28-7ubuntu0.1 [170 kB] Get:56 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libpulse0 amd64 1:13.99.1-1ubuntu3.13 [262 kB] Get:57 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-pulseaudio amd64 1.16.2-1ubuntu2.1 [88.2 kB] Get:58 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-x amd64 1.16.2-4ubuntu0.1 [74.9 kB] Get:59 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libdbus-1-dev amd64 1.12.16-2ubuntu2.2 [167 kB] Get:60 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxfixes-dev amd64 1:5.0.3-2 [11.4 kB] Get:61 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 x11proto-input-dev all 2019.2-1ubuntu1 [2628 B] Get:62 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxi-dev amd64 2:1.7.10-0ubuntu1 [187 kB] Get:63 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 x11proto-record-dev all 2019.2-1ubuntu1 [2624 B] Get:64 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxtst-dev amd64 2:1.2.3-1 [15.2 kB] Get:65 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libatspi2.0-dev amd64 2.36.0-2 [66.7 kB] Get:66 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libatk-bridge2.0-dev amd64 2.34.2-0ubuntu2~20.04.1 [3140 B] Get:67 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libatk1.0-dev amd64 2.35.1-1ubuntu2 [95.2 kB] Get:68 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libbrotli-dev amd64 1.0.7-6ubuntu0.1 [279 kB] Get:69 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libdatrie-dev amd64 0.2.12-3 [17.6 kB] Get:70 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libglx-dev amd64 1.3.2-1~ubuntu0.20.04.2 [14.0 kB] Get:71 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [97.8 kB] Get:72 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [17.2 kB] Get:73 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles1 amd64 1.3.2-1~ubuntu0.20.04.2 [10.3 kB] Get:74 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles2 amd64 1.3.2-1~ubuntu0.20.04.2 [15.6 kB] Get:75 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles-dev amd64 1.3.2-1~ubuntu0.20.04.2 [47.9 kB] Get:76 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopengl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [3584 B] Get:77 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libglvnd-dev amd64 1.3.2-1~ubuntu0.20.04.2 [11.6 kB] Get:78 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl1-mesa-dev amd64 21.2.6-0ubuntu0.1~20.04.2 [7760 B] Get:79 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgl1-mesa-dev amd64 21.2.6-0ubuntu0.1~20.04.2 [6420 B] Get:80 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libepoxy-dev amd64 1.5.4-1 [126 kB] Get:81 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libfribidi-dev amd64 1.0.8-2ubuntu0.1 [62.3 kB] Get:82 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libgraphite2-dev amd64 1.3.13-11build1 [14.7 kB] Get:83 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libharfbuzz-gobject0 amd64 2.6.4-1ubuntu4 [20.4 kB]

    Cargo Publish

    Updating crates.io index
       Packaging tauri-plugin-graphql v0.2.4 (/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql)
       Verifying tauri-plugin-graphql v0.2.4 (/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql)
     Downloading crates ...
      Downloaded thiserror v1.0.31
      Downloaded flate2 v1.0.23
      Downloaded lock_api v0.4.7
      Downloaded memchr v2.5.0
      Downloaded semver v1.0.9
      Downloaded xattr v0.2.3
      Downloaded filetime v0.2.16
      Downloaded anyhow v1.0.57
      Downloaded tinyvec v1.6.0
      Downloaded once_cell v1.12.0
      Downloaded parking_lot_core v0.9.3
      Downloaded log v0.4.17
      Downloaded unicode-ident v1.0.0
      Downloaded toml v0.5.9
      Downloaded tokio v1.18.2
      Downloaded pkg-config v0.3.25
      Downloaded unicode-bidi v0.3.8
      Downloaded serde_repr v0.1.8
      Downloaded regex v1.5.6
      Downloaded darling_macro v0.13.4
      Downloaded ryu v1.0.10
      Downloaded thiserror-impl v1.0.31
      Downloaded darling v0.13.4
      Downloaded darling_core v0.13.4
      Downloaded gdk-pixbuf v0.15.11
      Downloaded cfg-expr v0.10.3
      Downloaded state v0.5.3
      Downloaded soup2 v0.2.1
      Downloaded regex-syntax v0.6.26
      Downloaded libc v0.2.126
      Downloaded gtk v0.15.5
      Downloaded gio v0.15.11
      Downloaded serde_with_macros v1.5.2
      Downloaded glib-macros v0.15.11
      Downloaded brotli v3.3.4
      Downloaded serde_with v1.13.0
      Downloaded glib v0.15.11
      Downloaded cairo-rs v0.15.11
      Downloaded syn v1.0.95
      Downloaded slab v0.4.6
      Downloaded quote v1.0.18
      Downloaded proc-macro2 v1.0.39
      Downloaded pin-project-lite v0.2.9
      Downloaded itoa v1.0.2
       Compiling proc-macro2 v1.0.39
       Compiling unicode-ident v1.0.0
       Compiling syn v1.0.95
       Compiling serde_derive v1.0.137
       Compiling serde v1.0.137
       Compiling libc v0.2.126
       Compiling smallvec v1.8.0
       Compiling pkg-config v0.3.25
       Compiling heck v0.4.0
       Compiling version-compare v0.1.0
       Compiling cfg-if v1.0.0
       Compiling version_check v0.9.4
       Compiling memchr v2.5.0
       Compiling once_cell v1.12.0
       Compiling ppv-lite86 v0.2.16
       Compiling siphasher v0.3.10
       Compiling autocfg v1.1.0
       Compiling getrandom v0.1.16
       Compiling bitflags v1.3.2
       Compiling futures-core v0.3.21
       Compiling futures-channel v0.3.21
       Compiling futures-task v0.3.21
       Compiling pin-project-lite v0.2.9
       Compiling futures-io v0.3.21
       Compiling futures-util v0.3.21
       Compiling futures-sink v0.3.21
       Compiling slab v0.4.6
       Compiling pin-utils v0.1.0
       Compiling anyhow v1.0.57
       Compiling proc-macro-hack v0.5.19
       Compiling fnv v1.0.7
       Compiling unicode-segmentation v1.9.0
       Compiling log v0.4.17
       Compiling version-compare v0.0.11
       Compiling itoa v1.0.2
       Compiling ryu v1.0.10
       Compiling matches v0.1.9
       Compiling parking_lot_core v0.9.3
       Compiling ucd-trie v0.1.3
       Compiling scopeguard v1.1.0
       Compiling new_debug_unreachable v1.0.4
       Compiling byteorder v1.4.3
       Compiling precomputed-hash v0.1.1
       Compiling mac v0.1.1
       Compiling gio v0.15.11
       Compiling strsim v0.10.0
       Compiling tinyvec_macros v0.1.0
       Compiling ident_case v1.0.1
       Compiling utf-8 v0.7.6
       Compiling dtoa v0.4.8
       Compiling rustversion v1.0.6
       Compiling serde_json v1.0.81
    
    Source code(tar.gz)
    Source code(zip)
  • tauri-plugin-graphql-urql-v0.2.5(May 25, 2022)

    [0.2.5]

    • Update Tauri to v1.0.0-rc.12
      • Bumped due to a bump in tauri-plugin-graphql.
      • 42d98bb add tauri changefile on 2022-04-27
      • 5f9cbdf [create-pull-request] automated change on 2022-04-27
      • 01838a3 Create update-tauri.md on 2022-05-25

    pnpm Package Publish

    > [email protected] prepublishOnly /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql
    > pnpm run build
    
    
    > [email protected] build /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql
    > tsup
    
    CLI Building entry: index.ts
    CLI Using tsconfig: tsconfig.json
    CLI tsup v5.12.8
    CLI Using tsup config: /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql/tsup.config.ts
    CLI Target: node12
    CLI Cleaning output folder
    ESM Build start
    ESM ⚑️ Build success in 11ms
    ESM dist/index.mjs 3.68 KB
    DTS Build start
    DTS ⚑️ Build success in 1354ms
    DTS dist/index.d.ts 1.53 KB
    npm info it worked if it ends with ok
    npm verb cli [
    npm verb cli   '/opt/hostedtoolcache/node/14.19.2/x64/bin/node',
    npm verb cli   '/opt/hostedtoolcache/node/14.19.2/x64/bin/npm',
    npm verb cli   'publish',
    npm verb cli   '--ignore-scripts',
    npm verb cli   'tauri-plugin-graphql-urql-0.2.5.tgz',
    npm verb cli   '--access',
    npm verb cli   'public',
    npm verb cli   '--loglevel',
    npm verb cli   'silly',
    npm verb cli   '--no-git-checks'
    npm verb cli ]
    npm info using [email protected]
    npm info using [email protected]
    npm verb npm-session 0792bc4715e6aabd
    npm verb publish [ 'tauri-plugin-graphql-urql-0.2.5.tgz' ]
    npm sill tarball no local data for file:tauri-plugin-graphql-urql-0.2.5.tgz. Extracting by manifest.
    npm sill tarball no local data for file:tauri-plugin-graphql-urql-0.2.5.tgz. Extracting by manifest.
    npm sill extract file:tauri-plugin-graphql-urql-0.2.5.tgz extracted to /tmp/npm-10131-719e3990/tmp/fromPackage-45c8a45e/package (21ms)
    npm notice 
    npm notice πŸ“¦  [email protected]
    npm notice === Tarball Contents === 
    npm notice 877B  package.json   
    npm notice 2.1kB README.md      
    npm notice 3.8kB dist/index.mjs 
    npm notice 1.6kB dist/index.d.ts
    npm notice 1.1kB LICENSE        
    npm notice === Tarball Details === 
    npm notice name:          tauri-plugin-graphql-urql               
    npm notice version:       0.2.5                                   
    npm notice package size:  3.8 kB                                  
    npm notice unpacked size: 9.4 kB                                  
    npm notice shasum:        0d33d15c7fb4baa8b938ba0cec6ba98adc8f2132
    npm notice integrity:     sha512-Llp2NBSFvw1yO[...]QQK1dVw2JZ0dg==
    npm notice total files:   5                                       
    npm notice 
    npm http fetch PUT 200 https://registry.npmjs.org/tauri-plugin-graphql-urql 874ms
    + [email protected]
    npm verb exit [ 0, true ]
    npm timing npm Completed in 2296ms
    npm info ok
    
    Source code(tar.gz)
    Source code(zip)
  • tauri-plugin-graphql-v0.2.3(May 19, 2022)

    [0.2.3]

    • Update dependencies.
      • f15f662 Create chore-update-deps.md on 2022-05-18
      • 4f73836 Update chore-update-deps.md on 2022-05-19

    Hit:1 http://azure.archive.ubuntu.com/ubuntu focal InRelease Get:2 http://azure.archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB] Get:3 http://azure.archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB] Get:4 http://azure.archive.ubuntu.com/ubuntu focal-security InRelease [114 kB] Get:5 https://packages.microsoft.com/ubuntu/20.04/prod focal InRelease [10.5 kB] Hit:6 http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu focal InRelease Get:7 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [1793 kB] Get:8 http://azure.archive.ubuntu.com/ubuntu focal-updates/main Translation-en [330 kB] Get:9 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [15.2 kB] Get:10 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [976 kB] Get:11 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [139 kB] Get:12 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [520 B] Get:13 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [924 kB] Get:14 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [207 kB] Get:15 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [20.7 kB] Get:16 http://azure.archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [24.4 kB] Get:17 http://azure.archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [596 B] Get:18 http://azure.archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [68.1 kB] Get:19 http://azure.archive.ubuntu.com/ubuntu focal-backports/main Translation-en [10.9 kB] Get:20 http://azure.archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [980 B] Get:21 http://azure.archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [26.8 kB] Get:22 http://azure.archive.ubuntu.com/ubuntu focal-backports/universe Translation-en [15.9 kB] Get:23 http://azure.archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [860 B] Get:24 http://azure.archive.ubuntu.com/ubuntu focal-security/main amd64 Packages [1453 kB] Get:25 http://azure.archive.ubuntu.com/ubuntu focal-security/main Translation-en [250 kB] Get:26 http://azure.archive.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [10.2 kB] Get:27 http://azure.archive.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [914 kB] Get:28 http://azure.archive.ubuntu.com/ubuntu focal-security/restricted Translation-en [130 kB] Get:29 http://azure.archive.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [520 B] Get:30 http://azure.archive.ubuntu.com/ubuntu focal-security/universe amd64 Packages [703 kB] Get:31 http://azure.archive.ubuntu.com/ubuntu focal-security/universe Translation-en [125 kB] Get:32 http://azure.archive.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [14.4 kB] Get:33 http://azure.archive.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [22.2 kB] Get:34 http://azure.archive.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5376 B] Get:35 http://azure.archive.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [512 B] Get:36 https://packages.microsoft.com/ubuntu/20.04/prod focal/main amd64 Packages [160 kB] Get:37 https://packages.microsoft.com/ubuntu/20.04/prod focal/main arm64 Packages [26.8 kB] Get:38 https://packages.microsoft.com/ubuntu/20.04/prod focal/main armhf Packages [21.7 kB] Fetched 8739 kB in 2s (5410 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: bubblewrap dbus gir1.2-atk-1.0 gir1.2-atspi-2.0 gir1.2-gtk-3.0 gir1.2-harfbuzz-0.0 gir1.2-javascriptcoregtk-4.0 gir1.2-pango-1.0 gir1.2-soup-2.4 gir1.2-webkit2-4.0 gstreamer1.0-gl gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-pulseaudio gstreamer1.0-x libaa1 libasyncns0 libatk-bridge2.0-dev libatk1.0-dev libatspi2.0-dev libavc1394-0 libbrotli-dev libcaca0 libcdparanoia0 libdatrie-dev libdbus-1-3 libdbus-1-dev libdv4 libegl-dev libegl-mesa0 libegl1 libegl1-mesa-dev libepoxy-dev libflac8 libfribidi-dev libgl-dev libgl1-mesa-dev libgles-dev libgles1 libgles2 libglvnd-dev libglx-dev libgraphene-1.0-0 libgraphite2-dev libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libgtk-3-dev libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libhyphen0 libiec61883-0 libjack-jackd2-0 libjavascriptcoregtk-4.0-18 libjavascriptcoregtk-4.0-dev libmp3lame0 libmpg123-0 libopengl-dev libopengl0 libopenjp2-7 libopus0 liborc-0.4-0 libpango1.0-dev libpangoxft-1.0-0 libpsl-dev libpulse0 libraw1394-11 libsamplerate0 libshout3 libsndfile1 libsoup2.4-dev libspeex1 libtag1v5 libtag1v5-vanilla libthai-dev libtheora0 libtwolame0 libv4l-0 libv4lconvert0 libvisual-0.4-0 libvorbisenc2 libwavpack1 libwayland-bin libwayland-dev libwebpdemux2 libwoff1 libxcomposite-dev libxcursor-dev libxdamage-dev libxfixes-dev libxi-dev libxinerama-dev libxkbcommon-dev libxrandr-dev libxtst-dev pango1.0-tools wayland-protocols x11proto-input-dev x11proto-randr-dev x11proto-record-dev x11proto-xinerama-dev xdg-dbus-proxy Suggested packages: gvfs libdatrie-doc libdv-bin oss-compat libgraphite2-utils libvisual-0.4-plugins libgtk-3-doc jackd2 opus-tools libpango1.0-doc pulseaudio libraw1394-doc libsoup2.4-doc speex libthai-doc libwayland-doc gstreamer1.0-libav devhelp The following NEW packages will be installed: bubblewrap gir1.2-atk-1.0 gir1.2-atspi-2.0 gir1.2-gtk-3.0 gir1.2-harfbuzz-0.0 gir1.2-javascriptcoregtk-4.0 gir1.2-pango-1.0 gir1.2-soup-2.4 gir1.2-webkit2-4.0 gstreamer1.0-gl gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-pulseaudio gstreamer1.0-x libaa1 libasyncns0 libatk-bridge2.0-dev libatk1.0-dev libatspi2.0-dev libavc1394-0 libbrotli-dev libcaca0 libcdparanoia0 libdatrie-dev libdbus-1-dev libdv4 libegl-dev libegl-mesa0 libegl1 libegl1-mesa-dev libepoxy-dev libflac8 libfribidi-dev libgl-dev libgl1-mesa-dev libgles-dev libgles1 libgles2 libglvnd-dev libglx-dev libgraphene-1.0-0 libgraphite2-dev libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libgtk-3-dev libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libhyphen0 libiec61883-0 libjack-jackd2-0 libjavascriptcoregtk-4.0-18 libjavascriptcoregtk-4.0-dev libmp3lame0 libmpg123-0 libopengl-dev libopengl0 libopenjp2-7 libopus0 liborc-0.4-0 libpango1.0-dev libpangoxft-1.0-0 libpsl-dev libpulse0 libraw1394-11 libsamplerate0 libshout3 libsndfile1 libsoup2.4-dev libspeex1 libtag1v5 libtag1v5-vanilla libthai-dev libtheora0 libtwolame0 libv4l-0 libv4lconvert0 libvisual-0.4-0 libvorbisenc2 libwavpack1 libwayland-bin libwayland-dev libwebkit2gtk-4.0-37 libwebkit2gtk-4.0-37-gtk2 libwebkit2gtk-4.0-dev libwebkit2gtk-4.0-doc libwebpdemux2 libwoff1 libxcomposite-dev libxcursor-dev libxdamage-dev libxfixes-dev libxi-dev libxinerama-dev libxkbcommon-dev libxrandr-dev libxtst-dev pango1.0-tools wayland-protocols x11proto-input-dev x11proto-randr-dev x11proto-record-dev x11proto-xinerama-dev xdg-dbus-proxy The following packages will be upgraded: dbus libdbus-1-3 2 upgraded, 105 newly installed, 0 to remove and 93 not upgraded. Need to get 34.3 MB of archives. After this operation, 167 MB of additional disk space will be used. Get:1 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 dbus amd64 1.12.16-2ubuntu2.2 [151 kB] Get:2 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libdbus-1-3 amd64 1.12.16-2ubuntu2.2 [179 kB] Get:3 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 bubblewrap amd64 0.4.0-1ubuntu4 [35.4 kB] Get:4 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-atk-1.0 amd64 2.35.1-1ubuntu2 [18.2 kB] Get:5 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-atspi-2.0 amd64 2.36.0-2 [15.1 kB] Get:6 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libpangoxft-1.0-0 amd64 1.44.7-2ubuntu4 [18.0 kB] Get:7 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-pango-1.0 amd64 1.44.7-2ubuntu4 [26.6 kB] Get:8 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-gtk-3.0 amd64 3.24.20-0ubuntu1.1 [196 kB] Get:9 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-harfbuzz-0.0 amd64 2.6.4-1ubuntu4 [26.3 kB] Get:10 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libjavascriptcoregtk-4.0-18 amd64 2.36.0-0ubuntu0.20.04.3 [6165 kB] Get:11 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-javascriptcoregtk-4.0 amd64 2.36.0-0ubuntu0.20.04.3 [28.8 kB] Get:12 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-soup-2.4 amd64 2.70.0-1 [27.5 kB] Get:13 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 xdg-dbus-proxy amd64 0.1.2-1 [23.0 kB] Get:14 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl-mesa0 amd64 21.2.6-0ubuntu0.1~20.04.2 [96.3 kB] Get:15 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl1 amd64 1.3.2-1~ubuntu0.20.04.2 [31.9 kB] Get:16 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 liborc-0.4-0 amd64 1:0.4.31-1 [188 kB] Get:17 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-plugins-base1.0-0 amd64 1.16.2-4ubuntu0.1 [735 kB] Get:18 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-gl1.0-0 amd64 1.16.2-4ubuntu0.1 [162 kB] Get:19 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libharfbuzz-icu0 amd64 2.6.4-1ubuntu4 [5580 B] Get:20 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libhyphen0 amd64 2.8.8-7 [27.0 kB] Get:21 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopengl0 amd64 1.3.2-1~ubuntu0.20.04.2 [29.2 kB] Get:22 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopenjp2-7 amd64 2.3.1-1ubuntu4.20.04.1 [141 kB] Get:23 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwebpdemux2 amd64 0.6.1-2ubuntu0.20.04.1 [9576 B] Get:24 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libwoff1 amd64 1.0.2-1build2 [42.0 kB] Get:25 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwebkit2gtk-4.0-37 amd64 2.36.0-0ubuntu0.20.04.3 [15.2 MB] Get:26 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-webkit2-4.0 amd64 2.36.0-0ubuntu0.20.04.3 [80.2 kB] Get:27 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libgraphene-1.0-0 amd64 1.10.0-1build2 [42.9 kB] Get:28 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-gl amd64 1.16.2-4ubuntu0.1 [109 kB] Get:29 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libcdparanoia0 amd64 3.10.2+debian-13 [46.7 kB] Get:30 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libopus0 amd64 1.3.1-0ubuntu1 [191 kB] Get:31 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15ubuntu2 [162 kB] Get:32 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libvisual-0.4-0 amd64 0.4.0-17 [99.8 kB] Get:33 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libvorbisenc2 amd64 1.3.6-2ubuntu1 [70.7 kB] Get:34 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-plugins-base amd64 1.16.2-4ubuntu0.1 [620 kB] Get:35 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libaa1 amd64 1.4p5-46 [47.3 kB] Get:36 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libraw1394-11 amd64 2.1.2-1 [30.7 kB] Get:37 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libavc1394-0 amd64 0.5.4-5 [16.2 kB] Get:38 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libcaca0 amd64 0.99.beta19-2.1ubuntu1.20.04.2 [203 kB] Get:39 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libdv4 amd64 1.0.0-12 [58.0 kB] Get:40 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libflac8 amd64 1.3.3-1build1 [103 kB] Get:41 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-plugins-good1.0-0 amd64 1.16.2-1ubuntu2.1 [63.7 kB] Get:42 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libiec61883-0 amd64 1.2.0-3 [24.3 kB] Get:43 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libsamplerate0 amd64 0.1.9-2 [939 kB] Get:44 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libjack-jackd2-0 amd64 1.9.12~dfsg-2ubuntu2 [267 kB] Get:45 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libmp3lame0 amd64 3.100-3 [133 kB] Get:46 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libmpg123-0 amd64 1.25.13-1 [124 kB] Get:47 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libspeex1 amd64 1.2~rc1.2-1.1ubuntu1.20.04.1 [53.2 kB] Get:48 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libshout3 amd64 2.4.3-1 [50.6 kB] Get:49 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtag1v5-vanilla amd64 1.11.1+dfsg.1-0.3ubuntu2 [280 kB] Get:50 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtag1v5 amd64 1.11.1+dfsg.1-0.3ubuntu2 [11.0 kB] Get:51 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtwolame0 amd64 0.4.0-2 [47.6 kB] Get:52 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libv4lconvert0 amd64 1.18.0-2build1 [76.5 kB] Get:53 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libv4l-0 amd64 1.18.0-2build1 [41.9 kB] Get:54 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwavpack1 amd64 5.2.0-1ubuntu0.1 [77.3 kB] Get:55 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-plugins-good amd64 1.16.2-1ubuntu2.1 [1739 kB] Get:56 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libasyncns0 amd64 0.8-6 [12.1 kB] Get:57 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libsndfile1 amd64 1.0.28-7ubuntu0.1 [170 kB] Get:58 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libpulse0 amd64 1:13.99.1-1ubuntu3.13 [262 kB] Get:59 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-pulseaudio amd64 1.16.2-1ubuntu2.1 [88.2 kB] Get:60 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-x amd64 1.16.2-4ubuntu0.1 [74.9 kB] Get:61 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libdbus-1-dev amd64 1.12.16-2ubuntu2.2 [167 kB] Get:62 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxfixes-dev amd64 1:5.0.3-2 [11.4 kB] Get:63 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 x11proto-input-dev all 2019.2-1ubuntu1 [2628 B] Get:64 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxi-dev amd64 2:1.7.10-0ubuntu1 [187 kB] Get:65 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 x11proto-record-dev all 2019.2-1ubuntu1 [2624 B] Get:66 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxtst-dev amd64 2:1.2.3-1 [15.2 kB] Get:67 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libatspi2.0-dev amd64 2.36.0-2 [66.7 kB] Get:68 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libatk-bridge2.0-dev amd64 2.34.2-0ubuntu2~20.04.1 [3140 B] Get:69 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libatk1.0-dev amd64 2.35.1-1ubuntu2 [95.2 kB] Get:70 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libbrotli-dev amd64 1.0.7-6ubuntu0.1 [279 kB] Get:71 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libdatrie-dev amd64 0.2.12-3 [17.6 kB] Get:72 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libglx-dev amd64 1.3.2-1~ubuntu0.20.04.2 [14.0 kB] Get:73 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [97.8 kB] Get:74 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [17.2 kB] Get:75 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles1 amd64 1.3.2-1~ubuntu0.20.04.2 [10.3 kB] Get:76 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles2 amd64 1.3.2-1~ubuntu0.20.04.2 [15.6 kB] Get:77 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles-dev amd64 1.3.2-1~ubuntu0.20.04.2 [47.9 kB] Get:78 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopengl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [3584 B] Get:79 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libglvnd-dev amd64 1.3.2-1~ubuntu0.20.04.2 [11.6 kB] Get:80 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl1-mesa-dev amd64 21.2.6-0ubuntu0.1~20.04.2 [7760 B] Get:81 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgl1-mesa-dev amd64 21.2.6-0ubuntu0.1~20.04.2 [6420 B] Get:82 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libepoxy-dev amd64 1.5.4-1 [126 kB] Get:83 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libfribidi-dev amd64 1.0.8-2ubuntu0.1 [62.3 kB] Get:84 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libgraphite2-dev amd64 1.3.13-11build1 [14.7 kB] Get:85 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libharfbuzz-gobject0 amd64 2.6.4-1ubuntu4 [20.4 kB] Get:86 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libharfbuzz-dev amd64 2.6.4-1ubuntu4 [526 kB] Get:87 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libthai-dev amd64 0.1.28-3 [24.5 kB]

    Cargo Publish

    Updating crates.io index
       Packaging tauri-plugin-graphql v0.2.3 (/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql)
       Verifying tauri-plugin-graphql v0.2.3 (/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql)
     Downloading crates ...
      Downloaded pkg-config v0.3.25
      Downloaded proc-macro2 v1.0.39
      Downloaded quote v1.0.18
      Downloaded glib-macros v0.15.11
      Downloaded pin-project-lite v0.2.9
      Downloaded unicode-ident v1.0.0
      Downloaded lock_api v0.4.7
      Downloaded state v0.5.3
      Downloaded xattr v0.2.3
      Downloaded serde_repr v0.1.8
      Downloaded ryu v1.0.10
      Downloaded toml v0.5.9
      Downloaded unicode-bidi v0.3.8
      Downloaded log v0.4.17
      Downloaded memchr v2.5.0
      Downloaded gtk v0.15.5
      Downloaded serde_with_macros v1.5.2
      Downloaded slab v0.4.6
      Downloaded darling_core v0.13.4
      Downloaded glib v0.15.11
      Downloaded serde_with v1.13.0
      Downloaded parking_lot_core v0.9.3
      Downloaded tokio v1.18.2
      Downloaded libc v0.2.126
      Downloaded cfg-expr v0.10.3
      Downloaded flate2 v1.0.23
      Downloaded filetime v0.2.16
      Downloaded tao v0.8.5
      Downloaded brotli v3.3.4
      Downloaded tinyvec v1.6.0
      Downloaded thiserror v1.0.31
      Downloaded gdk-pixbuf v0.15.11
      Downloaded cairo-rs v0.15.11
      Downloaded soup2 v0.2.1
      Downloaded darling_macro v0.13.4
      Downloaded darling v0.13.4
      Downloaded thiserror-impl v1.0.31
      Downloaded syn v1.0.95
      Downloaded semver v1.0.9
      Downloaded anyhow v1.0.57
      Downloaded itoa v1.0.2
      Downloaded gio v0.15.11
       Compiling proc-macro2 v1.0.39
       Compiling unicode-ident v1.0.0
       Compiling syn v1.0.95
       Compiling serde_derive v1.0.137
       Compiling serde v1.0.137
       Compiling libc v0.2.126
       Compiling smallvec v1.8.0
       Compiling pkg-config v0.3.25
       Compiling heck v0.4.0
       Compiling version-compare v0.1.0
       Compiling cfg-if v1.0.0
       Compiling version_check v0.9.4
       Compiling memchr v2.5.0
       Compiling once_cell v1.10.0
       Compiling ppv-lite86 v0.2.16
       Compiling siphasher v0.3.10
       Compiling autocfg v1.1.0
       Compiling getrandom v0.1.16
       Compiling bitflags v1.3.2
       Compiling futures-core v0.3.21
       Compiling futures-channel v0.3.21
       Compiling pin-project-lite v0.2.9
       Compiling futures-task v0.3.21
       Compiling futures-sink v0.3.21
       Compiling futures-io v0.3.21
       Compiling futures-util v0.3.21
       Compiling anyhow v1.0.57
       Compiling slab v0.4.6
       Compiling pin-utils v0.1.0
       Compiling proc-macro-hack v0.5.19
       Compiling unicode-segmentation v1.9.0
       Compiling log v0.4.17
       Compiling fnv v1.0.7
       Compiling itoa v1.0.2
       Compiling version-compare v0.0.11
       Compiling ryu v1.0.10
       Compiling ucd-trie v0.1.3
       Compiling parking_lot_core v0.9.3
       Compiling matches v0.1.9
       Compiling scopeguard v1.1.0
       Compiling new_debug_unreachable v1.0.4
       Compiling byteorder v1.4.3
       Compiling tinyvec_macros v0.1.0
       Compiling precomputed-hash v0.1.1
       Compiling strsim v0.10.0
       Compiling mac v0.1.1
       Compiling ident_case v1.0.1
       Compiling gio v0.15.11
       Compiling utf-8 v0.7.6
       Compiling dtoa v0.4.8
       Compiling alloc-no-stdlib v2.0.3
       Compiling serde_json v1.0.81
       Compiling rustversion v1.0.6
    
    Source code(tar.gz)
    Source code(zip)
  • tauri-plugin-graphql-urql-v0.2.4(May 19, 2022)

    [0.2.4]

    • Update dependencies.
      • Bumped due to a bump in tauri-plugin-graphql.
      • f15f662 Create chore-update-deps.md on 2022-05-18
      • 4f73836 Update chore-update-deps.md on 2022-05-19

    pnpm Package Publish

    > [email protected] prepublishOnly /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql
    > pnpm run build
    
    
    > [email protected] build /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql
    > tsup
    
    CLI Building entry: index.ts
    CLI Using tsconfig: tsconfig.json
    CLI tsup v5.12.8
    CLI Using tsup config: /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql/tsup.config.ts
    CLI Target: node12
    CLI Cleaning output folder
    ESM Build start
    ESM ⚑️ Build success in 14ms
    ESM dist/index.mjs 3.68 KB
    DTS Build start
    DTS ⚑️ Build success in 1442ms
    DTS dist/index.d.ts 1.53 KB
    npm info it worked if it ends with ok
    npm verb cli [
    npm verb cli   '/opt/hostedtoolcache/node/14.19.2/x64/bin/node',
    npm verb cli   '/opt/hostedtoolcache/node/14.19.2/x64/bin/npm',
    npm verb cli   'publish',
    npm verb cli   '--ignore-scripts',
    npm verb cli   'tauri-plugin-graphql-urql-0.2.4.tgz',
    npm verb cli   '--access',
    npm verb cli   'public',
    npm verb cli   '--loglevel',
    npm verb cli   'silly',
    npm verb cli   '--no-git-checks'
    npm verb cli ]
    npm info using [email protected]
    npm info using [email protected]
    npm verb npm-session e24bb0deae4f5e25
    npm verb publish [ 'tauri-plugin-graphql-urql-0.2.4.tgz' ]
    npm sill tarball no local data for file:tauri-plugin-graphql-urql-0.2.4.tgz. Extracting by manifest.
    npm sill tarball no local data for file:tauri-plugin-graphql-urql-0.2.4.tgz. Extracting by manifest.
    npm sill extract file:tauri-plugin-graphql-urql-0.2.4.tgz extracted to /tmp/npm-10468-699f355c/tmp/fromPackage-49c00e1a/package (28ms)
    npm notice 
    npm notice πŸ“¦  [email protected]
    npm notice === Tarball Contents === 
    npm notice 877B  package.json   
    npm notice 2.1kB README.md      
    npm notice 3.8kB dist/index.mjs 
    npm notice 1.6kB dist/index.d.ts
    npm notice 1.1kB LICENSE        
    npm notice === Tarball Details === 
    npm notice name:          tauri-plugin-graphql-urql               
    npm notice version:       0.2.4                                   
    npm notice package size:  3.8 kB                                  
    npm notice unpacked size: 9.4 kB                                  
    npm notice shasum:        b5add4e38ac2ee7fdea4aca1d302a8cb21b186f1
    npm notice integrity:     sha512-AHOvXu7cHmDUv[...]IwTUnVGPtKC5Q==
    npm notice total files:   5                                       
    npm notice 
    npm http fetch PUT 200 https://registry.npmjs.org/tauri-plugin-graphql-urql 1018ms
    + [email protected]
    npm verb exit [ 0, true ]
    npm timing npm Completed in 1760ms
    npm info ok
    
    Source code(tar.gz)
    Source code(zip)
  • tauri-plugin-graphql-v0.2.2(May 11, 2022)

    [0.2.2]

    • Update dependencies
      • 7c8a65d Create update-deps.md on 2022-05-11
    • Update documentation
      • de4c1fa Create update-docs.md on 2022-05-03

    Hit:1 http://azure.archive.ubuntu.com/ubuntu focal InRelease Get:2 http://azure.archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB] Get:3 http://azure.archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB] Get:4 http://azure.archive.ubuntu.com/ubuntu focal-security InRelease [114 kB] Get:5 https://packages.microsoft.com/ubuntu/20.04/prod focal InRelease [10.5 kB] Hit:6 http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu focal InRelease Get:7 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [1785 kB] Get:8 http://azure.archive.ubuntu.com/ubuntu focal-updates/main Translation-en [329 kB] Get:9 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [15.1 kB] Get:10 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [971 kB] Get:11 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [138 kB] Get:12 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [921 kB] Get:13 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [20.6 kB] Get:14 http://azure.archive.ubuntu.com/ubuntu focal-security/main amd64 Packages [1422 kB] Get:15 http://azure.archive.ubuntu.com/ubuntu focal-security/main Translation-en [246 kB] Get:16 http://azure.archive.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [10.1 kB] Get:17 http://azure.archive.ubuntu.com/ubuntu focal-security/universe amd64 Packages [702 kB] Get:18 http://azure.archive.ubuntu.com/ubuntu focal-security/universe Translation-en [125 kB] Get:19 http://azure.archive.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [14.4 kB] Get:20 https://packages.microsoft.com/ubuntu/20.04/prod focal/main amd64 Packages [157 kB] Get:21 https://packages.microsoft.com/ubuntu/20.04/prod focal/main arm64 Packages [25.8 kB] Get:22 https://packages.microsoft.com/ubuntu/20.04/prod focal/main armhf Packages [21.2 kB] Fetched 7251 kB in 2s (4601 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: bubblewrap dbus gir1.2-atk-1.0 gir1.2-atspi-2.0 gir1.2-gtk-3.0 gir1.2-harfbuzz-0.0 gir1.2-javascriptcoregtk-4.0 gir1.2-pango-1.0 gir1.2-soup-2.4 gir1.2-webkit2-4.0 gstreamer1.0-gl gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-pulseaudio gstreamer1.0-x libaa1 libasyncns0 libatk-bridge2.0-dev libatk1.0-dev libatspi2.0-dev libavc1394-0 libbrotli-dev libcaca0 libcdparanoia0 libdatrie-dev libdbus-1-3 libdbus-1-dev libdv4 libegl-dev libegl-mesa0 libegl1 libegl1-mesa-dev libepoxy-dev libflac8 libfribidi-dev libgl-dev libgl1-mesa-dev libgles-dev libgles1 libgles2 libglvnd-dev libglx-dev libgraphene-1.0-0 libgraphite2-dev libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libgtk-3-dev libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libhyphen0 libiec61883-0 libjack-jackd2-0 libjavascriptcoregtk-4.0-18 libjavascriptcoregtk-4.0-dev libmp3lame0 libmpg123-0 libopengl-dev libopengl0 libopenjp2-7 libopus0 liborc-0.4-0 libpango1.0-dev libpangoxft-1.0-0 libpsl-dev libpulse0 libraw1394-11 libsamplerate0 libshout3 libsndfile1 libsoup2.4-dev libspeex1 libtag1v5 libtag1v5-vanilla libthai-dev libtheora0 libtwolame0 libv4l-0 libv4lconvert0 libvisual-0.4-0 libvorbisenc2 libwavpack1 libwayland-bin libwayland-dev libwebpdemux2 libwoff1 libxcomposite-dev libxcursor-dev libxdamage-dev libxfixes-dev libxi-dev libxinerama-dev libxkbcommon-dev libxrandr-dev libxtst-dev pango1.0-tools wayland-protocols x11proto-input-dev x11proto-randr-dev x11proto-record-dev x11proto-xinerama-dev xdg-dbus-proxy Suggested packages: gvfs libdatrie-doc libdv-bin oss-compat libgraphite2-utils libvisual-0.4-plugins libgtk-3-doc jackd2 opus-tools libpango1.0-doc pulseaudio libraw1394-doc libsoup2.4-doc speex libthai-doc libwayland-doc gstreamer1.0-libav devhelp The following NEW packages will be installed: bubblewrap gir1.2-atk-1.0 gir1.2-atspi-2.0 gir1.2-gtk-3.0 gir1.2-harfbuzz-0.0 gir1.2-javascriptcoregtk-4.0 gir1.2-pango-1.0 gir1.2-soup-2.4 gir1.2-webkit2-4.0 gstreamer1.0-gl gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-pulseaudio gstreamer1.0-x libaa1 libasyncns0 libatk-bridge2.0-dev libatk1.0-dev libatspi2.0-dev libavc1394-0 libbrotli-dev libcaca0 libcdparanoia0 libdatrie-dev libdbus-1-dev libdv4 libegl-dev libegl-mesa0 libegl1 libegl1-mesa-dev libepoxy-dev libflac8 libfribidi-dev libgl-dev libgl1-mesa-dev libgles-dev libgles1 libgles2 libglvnd-dev libglx-dev libgraphene-1.0-0 libgraphite2-dev libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libgtk-3-dev libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libhyphen0 libiec61883-0 libjack-jackd2-0 libjavascriptcoregtk-4.0-18 libjavascriptcoregtk-4.0-dev libmp3lame0 libmpg123-0 libopengl-dev libopengl0 libopenjp2-7 libopus0 liborc-0.4-0 libpango1.0-dev libpangoxft-1.0-0 libpsl-dev libpulse0 libraw1394-11 libsamplerate0 libshout3 libsndfile1 libsoup2.4-dev libspeex1 libtag1v5 libtag1v5-vanilla libthai-dev libtheora0 libtwolame0 libv4l-0 libv4lconvert0 libvisual-0.4-0 libvorbisenc2 libwavpack1 libwayland-bin libwayland-dev libwebkit2gtk-4.0-37 libwebkit2gtk-4.0-37-gtk2 libwebkit2gtk-4.0-dev libwebkit2gtk-4.0-doc libwebpdemux2 libwoff1 libxcomposite-dev libxcursor-dev libxdamage-dev libxfixes-dev libxi-dev libxinerama-dev libxkbcommon-dev libxrandr-dev libxtst-dev pango1.0-tools wayland-protocols x11proto-input-dev x11proto-randr-dev x11proto-record-dev x11proto-xinerama-dev xdg-dbus-proxy The following packages will be upgraded: dbus libdbus-1-3 2 upgraded, 105 newly installed, 0 to remove and 81 not upgraded. Need to get 34.3 MB of archives. After this operation, 167 MB of additional disk space will be used. Get:1 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 dbus amd64 1.12.16-2ubuntu2.2 [151 kB] Get:2 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libdbus-1-3 amd64 1.12.16-2ubuntu2.2 [179 kB] Get:3 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 bubblewrap amd64 0.4.0-1ubuntu4 [35.4 kB] Get:4 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-atk-1.0 amd64 2.35.1-1ubuntu2 [18.2 kB] Get:5 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-atspi-2.0 amd64 2.36.0-2 [15.1 kB] Get:6 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libpangoxft-1.0-0 amd64 1.44.7-2ubuntu4 [18.0 kB] Get:7 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-pango-1.0 amd64 1.44.7-2ubuntu4 [26.6 kB] Get:8 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-gtk-3.0 amd64 3.24.20-0ubuntu1.1 [196 kB] Get:9 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-harfbuzz-0.0 amd64 2.6.4-1ubuntu4 [26.3 kB] Get:10 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libjavascriptcoregtk-4.0-18 amd64 2.36.0-0ubuntu0.20.04.3 [6165 kB] Get:11 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-javascriptcoregtk-4.0 amd64 2.36.0-0ubuntu0.20.04.3 [28.8 kB] Get:12 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-soup-2.4 amd64 2.70.0-1 [27.5 kB] Get:13 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 xdg-dbus-proxy amd64 0.1.2-1 [23.0 kB] Get:14 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl-mesa0 amd64 21.2.6-0ubuntu0.1~20.04.2 [96.3 kB] Get:15 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl1 amd64 1.3.2-1~ubuntu0.20.04.2 [31.9 kB] Get:16 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 liborc-0.4-0 amd64 1:0.4.31-1 [188 kB] Get:17 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-plugins-base1.0-0 amd64 1.16.2-4ubuntu0.1 [735 kB] Get:18 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-gl1.0-0 amd64 1.16.2-4ubuntu0.1 [162 kB] Get:19 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libharfbuzz-icu0 amd64 2.6.4-1ubuntu4 [5580 B] Get:20 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libhyphen0 amd64 2.8.8-7 [27.0 kB] Get:21 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopengl0 amd64 1.3.2-1~ubuntu0.20.04.2 [29.2 kB] Get:22 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopenjp2-7 amd64 2.3.1-1ubuntu4.20.04.1 [141 kB] Get:23 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwebpdemux2 amd64 0.6.1-2ubuntu0.20.04.1 [9576 B] Get:24 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libwoff1 amd64 1.0.2-1build2 [42.0 kB] Get:25 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwebkit2gtk-4.0-37 amd64 2.36.0-0ubuntu0.20.04.3 [15.2 MB] Get:26 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-webkit2-4.0 amd64 2.36.0-0ubuntu0.20.04.3 [80.2 kB] Get:27 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libgraphene-1.0-0 amd64 1.10.0-1build2 [42.9 kB] Get:28 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-gl amd64 1.16.2-4ubuntu0.1 [109 kB] Get:29 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libcdparanoia0 amd64 3.10.2+debian-13 [46.7 kB] Get:30 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libopus0 amd64 1.3.1-0ubuntu1 [191 kB] Get:31 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15ubuntu2 [162 kB] Get:32 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libvisual-0.4-0 amd64 0.4.0-17 [99.8 kB] Get:33 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libvorbisenc2 amd64 1.3.6-2ubuntu1 [70.7 kB] Get:34 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-plugins-base amd64 1.16.2-4ubuntu0.1 [620 kB] Get:35 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libaa1 amd64 1.4p5-46 [47.3 kB] Get:36 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libraw1394-11 amd64 2.1.2-1 [30.7 kB] Get:37 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libavc1394-0 amd64 0.5.4-5 [16.2 kB] Get:38 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libcaca0 amd64 0.99.beta19-2.1ubuntu1.20.04.2 [203 kB] Get:39 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libdv4 amd64 1.0.0-12 [58.0 kB] Get:40 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libflac8 amd64 1.3.3-1build1 [103 kB] Get:41 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-plugins-good1.0-0 amd64 1.16.2-1ubuntu2.1 [63.7 kB] Get:42 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libiec61883-0 amd64 1.2.0-3 [24.3 kB] Get:43 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libsamplerate0 amd64 0.1.9-2 [939 kB] Get:44 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libjack-jackd2-0 amd64 1.9.12~dfsg-2ubuntu2 [267 kB] Get:45 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libmp3lame0 amd64 3.100-3 [133 kB] Get:46 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libmpg123-0 amd64 1.25.13-1 [124 kB] Get:47 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libspeex1 amd64 1.2~rc1.2-1.1ubuntu1.20.04.1 [53.2 kB] Get:48 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libshout3 amd64 2.4.3-1 [50.6 kB] Get:49 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtag1v5-vanilla amd64 1.11.1+dfsg.1-0.3ubuntu2 [280 kB] Get:50 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtag1v5 amd64 1.11.1+dfsg.1-0.3ubuntu2 [11.0 kB] Get:51 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtwolame0 amd64 0.4.0-2 [47.6 kB] Get:52 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libv4lconvert0 amd64 1.18.0-2build1 [76.5 kB] Get:53 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libv4l-0 amd64 1.18.0-2build1 [41.9 kB] Get:54 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwavpack1 amd64 5.2.0-1ubuntu0.1 [77.3 kB] Get:55 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-plugins-good amd64 1.16.2-1ubuntu2.1 [1739 kB] Get:56 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libasyncns0 amd64 0.8-6 [12.1 kB] Get:57 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libsndfile1 amd64 1.0.28-7ubuntu0.1 [170 kB] Get:58 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libpulse0 amd64 1:13.99.1-1ubuntu3.13 [262 kB] Get:59 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-pulseaudio amd64 1.16.2-1ubuntu2.1 [88.2 kB] Get:60 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-x amd64 1.16.2-4ubuntu0.1 [74.9 kB] Get:61 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libdbus-1-dev amd64 1.12.16-2ubuntu2.2 [167 kB] Get:62 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxfixes-dev amd64 1:5.0.3-2 [11.4 kB] Get:63 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 x11proto-input-dev all 2019.2-1ubuntu1 [2628 B] Get:64 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxi-dev amd64 2:1.7.10-0ubuntu1 [187 kB] Get:65 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 x11proto-record-dev all 2019.2-1ubuntu1 [2624 B] Get:66 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxtst-dev amd64 2:1.2.3-1 [15.2 kB] Get:67 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libatspi2.0-dev amd64 2.36.0-2 [66.7 kB]

    Cargo Publish

    Updating crates.io index
       Packaging tauri-plugin-graphql v0.2.2 (/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql)
       Verifying tauri-plugin-graphql v0.2.2 (/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql)
     Downloading crates ...
      Downloaded lock_api v0.4.7
      Downloaded anyhow v1.0.57
      Downloaded thiserror-impl v1.0.31
      Downloaded unicode-xid v0.2.3
      Downloaded toml v0.5.9
      Downloaded flate2 v1.0.23
      Downloaded quote v1.0.18
      Downloaded glib-macros v0.15.11
      Downloaded state v0.5.3
      Downloaded unicode-bidi v0.3.8
      Downloaded glib v0.15.11
      Downloaded darling_macro v0.13.4
      Downloaded darling_core v0.13.4
      Downloaded darling v0.13.4
      Downloaded filetime v0.2.16
      Downloaded xattr v0.2.3
      Downloaded gdk-pixbuf v0.15.11
      Downloaded gio v0.15.11
      Downloaded serde_repr v0.1.8
      Downloaded tokio v1.18.2
      Downloaded gtk v0.15.5
      Downloaded cairo-rs v0.15.11
      Downloaded log v0.4.17
      Downloaded libc v0.2.125
      Downloaded brotli v3.3.4
      Downloaded tinyvec v1.6.0
      Downloaded slab v0.4.6
      Downloaded parking_lot_core v0.9.3
      Downloaded thiserror v1.0.31
      Downloaded syn v1.0.93
      Downloaded serde_with_macros v1.5.2
      Downloaded serde_with v1.13.0
      Downloaded semver v1.0.9
      Downloaded proc-macro2 v1.0.38
      Downloaded pkg-config v0.3.25
      Downloaded pin-project-lite v0.2.9
      Downloaded memchr v2.5.0
       Compiling proc-macro2 v1.0.38
       Compiling unicode-xid v0.2.3
       Compiling syn v1.0.93
       Compiling serde_derive v1.0.137
       Compiling serde v1.0.137
       Compiling libc v0.2.125
       Compiling smallvec v1.8.0
       Compiling pkg-config v0.3.25
       Compiling heck v0.4.0
       Compiling version-compare v0.1.0
       Compiling cfg-if v1.0.0
       Compiling version_check v0.9.4
       Compiling memchr v2.5.0
       Compiling once_cell v1.10.0
       Compiling ppv-lite86 v0.2.16
       Compiling autocfg v1.1.0
       Compiling siphasher v0.3.10
       Compiling getrandom v0.1.16
       Compiling bitflags v1.3.2
       Compiling futures-core v0.3.21
       Compiling futures-channel v0.3.21
       Compiling futures-task v0.3.21
       Compiling pin-project-lite v0.2.9
       Compiling futures-io v0.3.21
       Compiling futures-sink v0.3.21
       Compiling futures-util v0.3.21
       Compiling pin-utils v0.1.0
       Compiling anyhow v1.0.57
       Compiling slab v0.4.6
       Compiling proc-macro-hack v0.5.19
       Compiling fnv v1.0.7
       Compiling log v0.4.17
       Compiling unicode-segmentation v1.9.0
       Compiling itoa v1.0.1
       Compiling version-compare v0.0.11
       Compiling ryu v1.0.9
       Compiling matches v0.1.9
       Compiling parking_lot_core v0.9.3
       Compiling ucd-trie v0.1.3
       Compiling new_debug_unreachable v1.0.4
       Compiling scopeguard v1.1.0
       Compiling mac v0.1.1
       Compiling strsim v0.10.0
       Compiling gio v0.15.11
       Compiling byteorder v1.4.3
       Compiling ident_case v1.0.1
       Compiling precomputed-hash v0.1.1
       Compiling tinyvec_macros v0.1.0
       Compiling utf-8 v0.7.6
       Compiling dtoa v0.4.8
       Compiling nodrop v0.1.14
       Compiling percent-encoding v2.1.0
       Compiling stable_deref_trait v1.2.0
       Compiling typenum v1.15.0
       Compiling convert_case v0.4.0
       Compiling alloc-no-stdlib v2.0.3
       Compiling unicode-bidi v0.3.8
       Compiling itoa v0.4.8
    
    Source code(tar.gz)
    Source code(zip)
  • tauri-plugin-graphql-urql-v0.2.3(May 11, 2022)

    [0.2.3]

    • Update dependencies
      • 7c8a65d Create update-deps.md on 2022-05-11

    pnpm Package Publish

    > [email protected] prepublishOnly /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql
    > pnpm run build
    
    
    > [email protected] build /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql
    > tsup
    
    CLI Building entry: index.ts
    CLI Using tsconfig: tsconfig.json
    CLI tsup v5.12.7
    CLI Using tsup config: /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql/tsup.config.ts
    CLI Target: node12
    CLI Cleaning output folder
    ESM Build start
    ESM ⚑️ Build success in 12ms
    ESM dist/index.mjs 3.68 KB
    DTS Build start
    DTS ⚑️ Build success in 1493ms
    DTS dist/index.d.ts 1.53 KB
    npm info it worked if it ends with ok
    npm verb cli [
    npm verb cli   '/opt/hostedtoolcache/node/14.19.1/x64/bin/node',
    npm verb cli   '/opt/hostedtoolcache/node/14.19.1/x64/bin/npm',
    npm verb cli   'publish',
    npm verb cli   '--ignore-scripts',
    npm verb cli   'tauri-plugin-graphql-urql-0.2.3.tgz',
    npm verb cli   '--access',
    npm verb cli   'public',
    npm verb cli   '--loglevel',
    npm verb cli   'silly',
    npm verb cli   '--no-git-checks'
    npm verb cli ]
    npm info using [email protected]
    npm info using [email protected]
    npm verb npm-session d37fd0a9e14ceba1
    npm verb publish [ 'tauri-plugin-graphql-urql-0.2.3.tgz' ]
    npm sill tarball no local data for file:tauri-plugin-graphql-urql-0.2.3.tgz. Extracting by manifest.
    npm sill tarball no local data for file:tauri-plugin-graphql-urql-0.2.3.tgz. Extracting by manifest.
    npm sill extract file:tauri-plugin-graphql-urql-0.2.3.tgz extracted to /tmp/npm-10441-d5616236/tmp/fromPackage-51ccc4f8/package (16ms)
    npm notice 
    npm notice πŸ“¦  [email protected]
    npm notice === Tarball Contents === 
    npm notice 877B  package.json   
    npm notice 2.1kB README.md      
    npm notice 3.8kB dist/index.mjs 
    npm notice 1.6kB dist/index.d.ts
    npm notice 1.1kB LICENSE        
    npm notice === Tarball Details === 
    npm notice name:          tauri-plugin-graphql-urql               
    npm notice version:       0.2.3                                   
    npm notice package size:  3.8 kB                                  
    npm notice unpacked size: 9.4 kB                                  
    npm notice shasum:        cb7df7f5a4f17183719576490c229abf40c673fb
    npm notice integrity:     sha512-G7Doq7gRB7oJo[...]GcVR7UYPz4r/g==
    npm notice total files:   5                                       
    npm notice 
    npm http fetch PUT 200 https://registry.npmjs.org/tauri-plugin-graphql-urql 773ms
    + [email protected]
    npm verb exit [ 0, true ]
    npm timing npm Completed in 2034ms
    npm info ok
    
    Source code(tar.gz)
    Source code(zip)
  • tauri-plugin-graphql-v0.2.1(Apr 27, 2022)

    [0.2.1]

    • Update dependency tauri to 1.0.0-rc.8
      • 42d98bb add tauri changefile on 2022-04-27

    Hit:1 http://azure.archive.ubuntu.com/ubuntu focal InRelease Get:2 http://azure.archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB] Get:3 http://azure.archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB] Get:4 http://azure.archive.ubuntu.com/ubuntu focal-security InRelease [114 kB] Get:5 https://packages.microsoft.com/ubuntu/20.04/prod focal InRelease [10.5 kB] Get:6 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [1749 kB] Hit:7 http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu focal InRelease Get:8 http://azure.archive.ubuntu.com/ubuntu focal-updates/main Translation-en [325 kB] Get:9 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [15.0 kB] Get:10 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [947 kB] Get:11 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [135 kB] Get:12 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [528 B] Get:13 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [920 kB] Get:14 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [206 kB] Get:15 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [20.6 kB] Get:16 http://azure.archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [22.7 kB] Get:17 http://azure.archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [804 B] Get:18 http://azure.archive.ubuntu.com/ubuntu focal-security/main amd64 Packages [1419 kB] Get:19 http://azure.archive.ubuntu.com/ubuntu focal-security/main Translation-en [246 kB] Get:20 http://azure.archive.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [10.1 kB] Get:21 http://azure.archive.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [886 kB] Get:22 http://azure.archive.ubuntu.com/ubuntu focal-security/restricted Translation-en [126 kB] Get:23 http://azure.archive.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [532 B] Get:24 http://azure.archive.ubuntu.com/ubuntu focal-security/universe amd64 Packages [700 kB] Get:25 http://azure.archive.ubuntu.com/ubuntu focal-security/universe Translation-en [124 kB] Get:26 http://azure.archive.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [14.4 kB] Get:27 https://packages.microsoft.com/ubuntu/20.04/prod focal/main arm64 Packages [24.7 kB] Get:28 https://packages.microsoft.com/ubuntu/20.04/prod focal/main amd64 Packages [151 kB] Fetched 8391 kB in 2s (5486 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: bubblewrap gir1.2-atk-1.0 gir1.2-atspi-2.0 gir1.2-gtk-3.0 gir1.2-harfbuzz-0.0 gir1.2-javascriptcoregtk-4.0 gir1.2-pango-1.0 gir1.2-soup-2.4 gir1.2-webkit2-4.0 gstreamer1.0-gl gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-pulseaudio gstreamer1.0-x libaa1 libasyncns0 libatk-bridge2.0-dev libatk1.0-dev libatspi2.0-dev libavc1394-0 libbrotli-dev libcaca0 libcdparanoia0 libdatrie-dev libdbus-1-dev libdv4 libegl-dev libegl-mesa0 libegl1 libegl1-mesa-dev libepoxy-dev libflac8 libfribidi-dev libgl-dev libgl1-mesa-dev libgles-dev libgles1 libgles2 libglvnd-dev libglx-dev libgraphene-1.0-0 libgraphite2-dev libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libgtk-3-dev libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libhyphen0 libiec61883-0 libjack-jackd2-0 libjavascriptcoregtk-4.0-18 libjavascriptcoregtk-4.0-dev libmp3lame0 libmpg123-0 libopengl-dev libopengl0 libopenjp2-7 libopus0 liborc-0.4-0 libpango1.0-dev libpangoxft-1.0-0 libpsl-dev libpulse0 libraw1394-11 libsamplerate0 libshout3 libsndfile1 libsoup2.4-dev libspeex1 libtag1v5 libtag1v5-vanilla libthai-dev libtheora0 libtwolame0 libv4l-0 libv4lconvert0 libvisual-0.4-0 libvorbisenc2 libwavpack1 libwayland-bin libwayland-dev libwebpdemux2 libwoff1 libxcomposite-dev libxcursor-dev libxdamage-dev libxfixes-dev libxi-dev libxinerama-dev libxkbcommon-dev libxrandr-dev libxtst-dev pango1.0-tools wayland-protocols x11proto-input-dev x11proto-randr-dev x11proto-record-dev x11proto-xinerama-dev xdg-dbus-proxy Suggested packages: gvfs libdatrie-doc libdv-bin oss-compat libgraphite2-utils libvisual-0.4-plugins libgtk-3-doc jackd2 opus-tools libpango1.0-doc pulseaudio libraw1394-doc libsoup2.4-doc speex libthai-doc libwayland-doc gstreamer1.0-libav devhelp The following NEW packages will be installed: bubblewrap gir1.2-atk-1.0 gir1.2-atspi-2.0 gir1.2-gtk-3.0 gir1.2-harfbuzz-0.0 gir1.2-javascriptcoregtk-4.0 gir1.2-pango-1.0 gir1.2-soup-2.4 gir1.2-webkit2-4.0 gstreamer1.0-gl gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-pulseaudio gstreamer1.0-x libaa1 libasyncns0 libatk-bridge2.0-dev libatk1.0-dev libatspi2.0-dev libavc1394-0 libbrotli-dev libcaca0 libcdparanoia0 libdatrie-dev libdbus-1-dev libdv4 libegl-dev libegl-mesa0 libegl1 libegl1-mesa-dev libepoxy-dev libflac8 libfribidi-dev libgl-dev libgl1-mesa-dev libgles-dev libgles1 libgles2 libglvnd-dev libglx-dev libgraphene-1.0-0 libgraphite2-dev libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libgtk-3-dev libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libhyphen0 libiec61883-0 libjack-jackd2-0 libjavascriptcoregtk-4.0-18 libjavascriptcoregtk-4.0-dev libmp3lame0 libmpg123-0 libopengl-dev libopengl0 libopenjp2-7 libopus0 liborc-0.4-0 libpango1.0-dev libpangoxft-1.0-0 libpsl-dev libpulse0 libraw1394-11 libsamplerate0 libshout3 libsndfile1 libsoup2.4-dev libspeex1 libtag1v5 libtag1v5-vanilla libthai-dev libtheora0 libtwolame0 libv4l-0 libv4lconvert0 libvisual-0.4-0 libvorbisenc2 libwavpack1 libwayland-bin libwayland-dev libwebkit2gtk-4.0-37 libwebkit2gtk-4.0-37-gtk2 libwebkit2gtk-4.0-dev libwebkit2gtk-4.0-doc libwebpdemux2 libwoff1 libxcomposite-dev libxcursor-dev libxdamage-dev libxfixes-dev libxi-dev libxinerama-dev libxkbcommon-dev libxrandr-dev libxtst-dev pango1.0-tools wayland-protocols x11proto-input-dev x11proto-randr-dev x11proto-record-dev x11proto-xinerama-dev xdg-dbus-proxy 0 upgraded, 105 newly installed, 0 to remove and 75 not upgraded. Need to get 33.0 MB of archives. After this operation, 165 MB of additional disk space will be used. Get:1 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 bubblewrap amd64 0.4.0-1ubuntu4 [35.4 kB] Get:2 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-atk-1.0 amd64 2.35.1-1ubuntu2 [18.2 kB] Get:3 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-atspi-2.0 amd64 2.36.0-2 [15.1 kB] Get:4 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libpangoxft-1.0-0 amd64 1.44.7-2ubuntu4 [18.0 kB] Get:5 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-pango-1.0 amd64 1.44.7-2ubuntu4 [26.6 kB] Get:6 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-gtk-3.0 amd64 3.24.20-0ubuntu1.1 [196 kB] Get:7 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-harfbuzz-0.0 amd64 2.6.4-1ubuntu4 [26.3 kB] Get:8 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libjavascriptcoregtk-4.0-18 amd64 2.34.6-0ubuntu0.20.04.1 [6257 kB] Get:9 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-javascriptcoregtk-4.0 amd64 2.34.6-0ubuntu0.20.04.1 [28.8 kB] Get:10 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-soup-2.4 amd64 2.70.0-1 [27.5 kB] Get:11 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 xdg-dbus-proxy amd64 0.1.2-1 [23.0 kB] Get:12 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl-mesa0 amd64 21.2.6-0ubuntu0.1~20.04.2 [96.3 kB] Get:13 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl1 amd64 1.3.2-1~ubuntu0.20.04.2 [31.9 kB] Get:14 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 liborc-0.4-0 amd64 1:0.4.31-1 [188 kB] Get:15 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-plugins-base1.0-0 amd64 1.16.2-4ubuntu0.1 [735 kB] Get:16 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-gl1.0-0 amd64 1.16.2-4ubuntu0.1 [162 kB] Get:17 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libharfbuzz-icu0 amd64 2.6.4-1ubuntu4 [5580 B] Get:18 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libhyphen0 amd64 2.8.8-7 [27.0 kB] Get:19 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopengl0 amd64 1.3.2-1~ubuntu0.20.04.2 [29.2 kB] Get:20 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopenjp2-7 amd64 2.3.1-1ubuntu4.20.04.1 [141 kB] Get:21 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwebpdemux2 amd64 0.6.1-2ubuntu0.20.04.1 [9576 B] Get:22 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libwoff1 amd64 1.0.2-1build2 [42.0 kB] Get:23 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwebkit2gtk-4.0-37 amd64 2.34.6-0ubuntu0.20.04.1 [14.1 MB] Get:24 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-webkit2-4.0 amd64 2.34.6-0ubuntu0.20.04.1 [80.1 kB] Get:25 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libgraphene-1.0-0 amd64 1.10.0-1build2 [42.9 kB] Get:26 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-gl amd64 1.16.2-4ubuntu0.1 [109 kB] Get:27 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libcdparanoia0 amd64 3.10.2+debian-13 [46.7 kB] Get:28 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libopus0 amd64 1.3.1-0ubuntu1 [191 kB] Get:29 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15ubuntu2 [162 kB] Get:30 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libvisual-0.4-0 amd64 0.4.0-17 [99.8 kB] Get:31 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libvorbisenc2 amd64 1.3.6-2ubuntu1 [70.7 kB] Get:32 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-plugins-base amd64 1.16.2-4ubuntu0.1 [620 kB] Get:33 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libaa1 amd64 1.4p5-46 [47.3 kB] Get:34 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libraw1394-11 amd64 2.1.2-1 [30.7 kB] Get:35 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libavc1394-0 amd64 0.5.4-5 [16.2 kB] Get:36 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libcaca0 amd64 0.99.beta19-2.1ubuntu1.20.04.2 [203 kB] Get:37 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libdv4 amd64 1.0.0-12 [58.0 kB] Get:38 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libflac8 amd64 1.3.3-1build1 [103 kB] Get:39 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-plugins-good1.0-0 amd64 1.16.2-1ubuntu2.1 [63.7 kB] Get:40 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libiec61883-0 amd64 1.2.0-3 [24.3 kB] Get:41 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libsamplerate0 amd64 0.1.9-2 [939 kB] Get:42 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libjack-jackd2-0 amd64 1.9.12~dfsg-2ubuntu2 [267 kB] Get:43 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libmp3lame0 amd64 3.100-3 [133 kB] Get:44 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libmpg123-0 amd64 1.25.13-1 [124 kB] Get:45 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libspeex1 amd64 1.2~rc1.2-1.1ubuntu1.20.04.1 [53.2 kB] Get:46 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libshout3 amd64 2.4.3-1 [50.6 kB] Get:47 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtag1v5-vanilla amd64 1.11.1+dfsg.1-0.3ubuntu2 [280 kB] Get:48 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtag1v5 amd64 1.11.1+dfsg.1-0.3ubuntu2 [11.0 kB] Get:49 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtwolame0 amd64 0.4.0-2 [47.6 kB] Get:50 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libv4lconvert0 amd64 1.18.0-2build1 [76.5 kB] Get:51 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libv4l-0 amd64 1.18.0-2build1 [41.9 kB] Get:52 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwavpack1 amd64 5.2.0-1ubuntu0.1 [77.3 kB] Get:53 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-plugins-good amd64 1.16.2-1ubuntu2.1 [1739 kB] Get:54 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libasyncns0 amd64 0.8-6 [12.1 kB] Get:55 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libsndfile1 amd64 1.0.28-7ubuntu0.1 [170 kB] Get:56 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libpulse0 amd64 1:13.99.1-1ubuntu3.13 [262 kB] Get:57 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-pulseaudio amd64 1.16.2-1ubuntu2.1 [88.2 kB] Get:58 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-x amd64 1.16.2-4ubuntu0.1 [74.9 kB] Get:59 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libdbus-1-dev amd64 1.12.16-2ubuntu2.1 [167 kB] Get:60 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxfixes-dev amd64 1:5.0.3-2 [11.4 kB] Get:61 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 x11proto-input-dev all 2019.2-1ubuntu1 [2628 B] Get:62 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxi-dev amd64 2:1.7.10-0ubuntu1 [187 kB] Get:63 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 x11proto-record-dev all 2019.2-1ubuntu1 [2624 B] Get:64 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxtst-dev amd64 2:1.2.3-1 [15.2 kB] Get:65 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libatspi2.0-dev amd64 2.36.0-2 [66.7 kB] Get:66 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libatk-bridge2.0-dev amd64 2.34.2-0ubuntu2~20.04.1 [3140 B] Get:67 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libatk1.0-dev amd64 2.35.1-1ubuntu2 [95.2 kB] Get:68 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libbrotli-dev amd64 1.0.7-6ubuntu0.1 [279 kB] Get:69 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libdatrie-dev amd64 0.2.12-3 [17.6 kB] Get:70 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libglx-dev amd64 1.3.2-1~ubuntu0.20.04.2 [14.0 kB] Get:71 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [97.8 kB] Get:72 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [17.2 kB] Get:73 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles1 amd64 1.3.2-1~ubuntu0.20.04.2 [10.3 kB] Get:74 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles2 amd64 1.3.2-1~ubuntu0.20.04.2 [15.6 kB] Get:75 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles-dev amd64 1.3.2-1~ubuntu0.20.04.2 [47.9 kB] Get:76 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopengl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [3584 B] Get:77 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libglvnd-dev amd64 1.3.2-1~ubuntu0.20.04.2 [11.6 kB] Get:78 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl1-mesa-dev amd64 21.2.6-0ubuntu0.1~20.04.2 [7760 B] Get:79 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgl1-mesa-dev amd64 21.2.6-0ubuntu0.1~20.04.2 [6420 B] Get:80 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libepoxy-dev amd64 1.5.4-1 [126 kB] Get:81 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libfribidi-dev amd64 1.0.8-2ubuntu0.1 [62.3 kB] Get:82 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libgraphite2-dev amd64 1.3.13-11build1 [14.7 kB] Get:83 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libharfbuzz-gobject0 amd64 2.6.4-1ubuntu4 [20.4 kB] Get:84 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libharfbuzz-dev amd64 2.6.4-1ubuntu4 [526 kB]

    Cargo Publish

    Updating crates.io index
       Packaging tauri-plugin-graphql v0.2.1 (/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql)
       Verifying tauri-plugin-graphql v0.2.1 (/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql)
     Downloading crates ...
      Downloaded darling_core v0.13.4
      Downloaded parking_lot_core v0.9.2
      Downloaded proc-macro2 v1.0.37
      Downloaded unicode-bidi v0.3.8
      Downloaded tinyvec v1.6.0
      Downloaded flate2 v1.0.23
      Downloaded filetime v0.2.16
      Downloaded darling_macro v0.13.4
      Downloaded darling v0.13.4
      Downloaded lock_api v0.4.7
      Downloaded glib-macros v0.15.11
      Downloaded syn v1.0.91
      Downloaded toml v0.5.9
      Downloaded anyhow v1.0.57
      Downloaded glib v0.15.11
      Downloaded tokio v1.18.0
      Downloaded gtk v0.15.5
      Downloaded brotli v3.3.4
      Downloaded slab v0.4.6
      Downloaded serde_with_macros v1.5.2
      Downloaded serde_with v1.13.0
      Downloaded quote v1.0.18
      Downloaded pkg-config v0.3.25
      Downloaded pin-project-lite v0.2.9
      Downloaded gio v0.15.11
      Downloaded gdk-pixbuf v0.15.11
      Downloaded cairo-rs v0.15.11
      Downloaded libc v0.2.124
       Compiling proc-macro2 v1.0.37
       Compiling unicode-xid v0.2.2
       Compiling syn v1.0.91
       Compiling serde_derive v1.0.136
       Compiling serde v1.0.136
       Compiling smallvec v1.8.0
       Compiling libc v0.2.124
       Compiling pkg-config v0.3.25
       Compiling heck v0.4.0
       Compiling cfg-if v1.0.0
       Compiling version-compare v0.1.0
       Compiling version_check v0.9.4
       Compiling anyhow v1.0.57
       Compiling memchr v2.4.1
       Compiling ppv-lite86 v0.2.16
       Compiling unicode-segmentation v1.9.0
       Compiling once_cell v1.10.0
       Compiling siphasher v0.3.10
       Compiling autocfg v1.1.0
       Compiling getrandom v0.1.16
       Compiling version-compare v0.0.11
       Compiling bitflags v1.3.2
       Compiling futures-core v0.3.21
       Compiling futures-task v0.3.21
       Compiling pin-project-lite v0.2.9
       Compiling futures-channel v0.3.21
       Compiling futures-io v0.3.21
       Compiling either v1.6.1
       Compiling futures-sink v0.3.21
       Compiling futures-util v0.3.21
       Compiling slab v0.4.6
       Compiling strum v0.21.0
       Compiling pin-utils v0.1.0
       Compiling proc-macro-hack v0.5.19
       Compiling fnv v1.0.7
       Compiling log v0.4.16
       Compiling itoa v1.0.1
       Compiling ryu v1.0.9
       Compiling ucd-trie v0.1.3
       Compiling matches v0.1.9
       Compiling parking_lot_core v0.9.2
       Compiling scopeguard v1.1.0
       Compiling new_debug_unreachable v1.0.4
       Compiling precomputed-hash v0.1.1
       Compiling ident_case v1.0.1
       Compiling tinyvec_macros v0.1.0
       Compiling strsim v0.10.0
       Compiling byteorder v1.4.3
       Compiling mac v0.1.1
       Compiling utf-8 v0.7.6
       Compiling gio v0.15.11
       Compiling dtoa v0.4.8
       Compiling itoa v0.4.8
       Compiling serde_json v1.0.79
       Compiling typenum v1.15.0
       Compiling stable_deref_trait v1.2.0
       Compiling nodrop v0.1.14
       Compiling alloc-no-stdlib v2.0.3
       Compiling rustversion v1.0.6
       Compiling unicode-bidi v0.3.8
       Compiling percent-encoding v2.1.0
       Compiling convert_case v0.4.0
       Compiling thin-slice v0.1.1
       Compiling lazy_static v1.4.0
       Compiling crossbeam-utils v0.8.8
       Compiling adler v1.0.2
       Compiling crc32fast v1.3.2
       Compiling bytes v1.1.0
    
    Source code(tar.gz)
    Source code(zip)
  • tauri-plugin-graphql-urql-v0.2.2(Apr 27, 2022)

    [0.2.2]

    • Update dependency @tauri-apps/api to 1.0.0-rc.4
      • 5e68e7b Create update-tauri-api.md on 2022-04-27

    pnpm Package Publish

    > [email protected] prepublishOnly /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql
    > pnpm run build
    
    
    > [email protected] build /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql
    > tsup
    
    CLI Building entry: index.ts
    CLI Using tsconfig: tsconfig.json
    CLI tsup v5.12.6
    CLI Using tsup config: /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql/tsup.config.ts
    CLI Target: node12
    CLI Cleaning output folder
    ESM Build start
    ESM ⚑️ Build success in 11ms
    ESM dist/index.mjs 3.68 KB
    DTS Build start
    DTS ⚑️ Build success in 1312ms
    DTS dist/index.d.ts 1.53 KB
    npm info it worked if it ends with ok
    npm verb cli [
    npm verb cli   '/opt/hostedtoolcache/node/14.19.1/x64/bin/node',
    npm verb cli   '/opt/hostedtoolcache/node/14.19.1/x64/bin/npm',
    npm verb cli   'publish',
    npm verb cli   '--ignore-scripts',
    npm verb cli   'tauri-plugin-graphql-urql-0.2.2.tgz',
    npm verb cli   '--access',
    npm verb cli   'public',
    npm verb cli   '--loglevel',
    npm verb cli   'silly',
    npm verb cli   '--no-git-checks'
    npm verb cli ]
    npm info using [email protected]
    npm info using [email protected]
    npm verb npm-session d358ccbfaef801e9
    npm verb publish [ 'tauri-plugin-graphql-urql-0.2.2.tgz' ]
    npm sill tarball no local data for file:tauri-plugin-graphql-urql-0.2.2.tgz. Extracting by manifest.
    npm sill tarball no local data for file:tauri-plugin-graphql-urql-0.2.2.tgz. Extracting by manifest.
    npm sill extract file:tauri-plugin-graphql-urql-0.2.2.tgz extracted to /tmp/npm-10337-bf42bc7f/tmp/fromPackage-0f14578b/package (14ms)
    npm notice 
    npm notice πŸ“¦  [email protected]
    npm notice === Tarball Contents === 
    npm notice 877B  package.json   
    npm notice 2.1kB README.md      
    npm notice 3.8kB dist/index.mjs 
    npm notice 1.6kB dist/index.d.ts
    npm notice 1.1kB LICENSE        
    npm notice === Tarball Details === 
    npm notice name:          tauri-plugin-graphql-urql               
    npm notice version:       0.2.2                                   
    npm notice package size:  3.8 kB                                  
    npm notice unpacked size: 9.4 kB                                  
    npm notice shasum:        313f3dee921eb0c75a08bf9ea9c4b8bc754f8163
    npm notice integrity:     sha512-Ql1KJwXbWxPkS[...]jNLLe+ibzSsuQ==
    npm notice total files:   5                                       
    npm notice 
    npm http fetch PUT 200 https://registry.npmjs.org/tauri-plugin-graphql-urql 1192ms
    + [email protected]
    npm verb exit [ 0, true ]
    npm timing npm Completed in 2424ms
    npm info ok
    
    Source code(tar.gz)
    Source code(zip)
  • tauri-plugin-graphql-urql-v0.2.1(Apr 2, 2022)

    [0.2.1]

    • Fix readme copy&paste issue
      • a9a3fed fix readme copy paste issue on 2022-04-02
    • Update README.md
      • 0ebf8c6 Create fix-update-readme.md on 2022-04-02

    pnpm Package Publish

    > [email protected] prepublishOnly /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql
    > pnpm run build
    
    
    > [email protected] build /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql
    > tsup
    
    CLI Building entry: index.ts
    CLI Using tsconfig: tsconfig.json
    CLI tsup v5.12.2
    CLI Using tsup config: /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql/tsup.config.ts
    CLI Target: node12
    CLI Cleaning output folder
    ESM Build start
    ESM ⚑️ Build success in 9ms
    ESM dist/index.mjs 3.68 KB
    DTS Build start
    DTS ⚑️ Build success in 1222ms
    DTS dist/index.d.ts 1.53 KB
    npm verb cli [
    npm verb cli   '/usr/local/bin/node',
    npm verb cli   '/usr/local/bin/npm',
    npm verb cli   'publish',
    npm verb cli   '--ignore-scripts',
    npm verb cli   'tauri-plugin-graphql-urql-0.2.1.tgz',
    npm verb cli   '--access',
    npm verb cli   'public',
    npm verb cli   '--loglevel',
    npm verb cli   'silly',
    npm verb cli   '--no-git-checks'
    npm verb cli ]
    npm info using [email protected]
    npm info using [email protected]
    npm timing npm:load:whichnode Completed in 0ms
    npm timing config:load:defaults Completed in 2ms
    npm timing config:load:file:/usr/local/lib/node_modules/npm/npmrc Completed in 2ms
    npm timing config:load:builtin Completed in 2ms
    npm timing config:load:cli Completed in 2ms
    npm timing config:load:env Completed in 1ms
    npm timing config:load:file:/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql/.npmrc Completed in 1ms
    npm timing config:load:project Completed in 16ms
    npm timing config:load:file:/home/runner/.npmrc Completed in 0ms
    npm timing config:load:user Completed in 0ms
    npm timing config:load:file:/usr/local/etc/npmrc Completed in 0ms
    npm timing config:load:global Completed in 1ms
    npm timing config:load:validate Completed in 0ms
    npm timing config:load:credentials Completed in 1ms
    npm timing config:load:setEnvs Completed in 0ms
    npm timing config:load Completed in 26ms
    npm timing npm:load:configload Completed in 26ms
    npm timing npm:load:setTitle Completed in 0ms
    npm timing config:load:flatten Completed in 2ms
    npm timing npm:load:display Completed in 5ms
    npm verb logfile /home/runner/.npm/_logs/2022-04-02T09_34_13_388Z-debug-0.log
    npm timing npm:load:logFile Completed in 7ms
    npm timing npm:load:timers Completed in 0ms
    npm timing npm:load:configScope Completed in 0ms
    npm timing npm:load Completed in 42ms
    npm verb publish [ 'tauri-plugin-graphql-urql-0.2.1.tgz' ]
    npm notice 
    npm notice πŸ“¦  [email protected]
    npm notice === Tarball Contents === 
    npm notice 1.1kB LICENSE        
    npm notice 932B  README.md      
    npm notice 1.6kB dist/index.d.ts
    npm notice 3.8kB dist/index.mjs 
    npm notice 1.9kB package.json   
    npm notice === Tarball Details === 
    npm notice name:          tauri-plugin-graphql-urql               
    npm notice version:       0.2.1                                   
    npm notice filename:      tauri-plugin-graphql-urql-0.2.1.tgz     
    npm notice package size:  3.5 kB                                  
    npm notice unpacked size: 9.2 kB                                  
    npm notice shasum:        641dc0a53ecb436b907d8b754e2e84d76c9f5096
    npm notice integrity:     sha512-sLjpsSX9U3nHu[...]f78QxtdGpP2Yw==
    npm notice total files:   5                                       
    npm notice 
    npm notice Publishing to https://registry.npmjs.org/
    npm http fetch PUT 200 https://registry.npmjs.org/tauri-plugin-graphql-urql 716ms
    npm timing command:publish Completed in 811ms
    npm verb exit 0
    + [email protected]
    npm timing npm Completed in 1093ms
    npm info ok
    
    Source code(tar.gz)
    Source code(zip)
  • tauri-plugin-graphql-v0.2.0(Apr 1, 2022)

    [0.2.0]

    • Add support for GraphQL subscriptions. Subscriptions provide a type-safe way to model real-time state changes. This feature is currently gated by the subscriptions flag but will be enabled by default in a future release.
      • d73c988 add changefiles on 2022-04-01
    • Replace panicking behavior with proper error handling.
      • d73c988 add changefiles on 2022-04-01

    Cargo Publish

    Updating crates.io index
       Packaging tauri-plugin-graphql v0.2.0 (/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql)
       Verifying tauri-plugin-graphql v0.2.0 (/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql)
     Downloading crates ...
      Downloaded pkg-config v0.3.25
      Downloaded lock_api v0.4.7
      Downloaded parking_lot_core v0.9.2
      Downloaded darling_core v0.13.2
      Downloaded darling v0.13.2
      Downloaded darling_macro v0.13.2
      Downloaded brotli v3.3.4
       Compiling proc-macro2 v1.0.36
       Compiling unicode-xid v0.2.2
       Compiling syn v1.0.90
       Compiling serde_derive v1.0.136
       Compiling serde v1.0.136
       Compiling smallvec v1.8.0
       Compiling libc v0.2.121
       Compiling pkg-config v0.3.25
       Compiling heck v0.4.0
       Compiling cfg-if v1.0.0
       Compiling version-compare v0.1.0
       Compiling version_check v0.9.4
       Compiling anyhow v1.0.56
       Compiling autocfg v1.1.0
       Compiling ppv-lite86 v0.2.16
       Compiling unicode-segmentation v1.9.0
       Compiling memchr v2.4.1
       Compiling siphasher v0.3.10
       Compiling getrandom v0.1.16
       Compiling version-compare v0.0.11
       Compiling once_cell v1.10.0
       Compiling bitflags v1.3.2
       Compiling futures-core v0.3.21
       Compiling futures-task v0.3.21
       Compiling pin-project-lite v0.2.8
       Compiling futures-channel v0.3.21
       Compiling either v1.6.1
       Compiling futures-util v0.3.21
       Compiling futures-sink v0.3.21
       Compiling futures-io v0.3.21
       Compiling slab v0.4.5
       Compiling strum v0.21.0
       Compiling pin-utils v0.1.0
       Compiling proc-macro-hack v0.5.19
       Compiling fnv v1.0.7
       Compiling log v0.4.16
       Compiling parking_lot_core v0.9.2
       Compiling matches v0.1.9
       Compiling ucd-trie v0.1.3
       Compiling serde_json v1.0.79
       Compiling itoa v1.0.1
       Compiling scopeguard v1.1.0
       Compiling new_debug_unreachable v1.0.4
       Compiling precomputed-hash v0.1.1
       Compiling tinyvec_macros v0.1.0
       Compiling ryu v1.0.9
       Compiling mac v0.1.1
       Compiling strsim v0.10.0
       Compiling byteorder v1.4.3
       Compiling ident_case v1.0.1
       Compiling gio v0.15.10
       Compiling utf-8 v0.7.6
       Compiling dtoa v0.4.8
       Compiling stable_deref_trait v1.2.0
       Compiling rustversion v1.0.6
       Compiling unicode-bidi v0.3.7
       Compiling itoa v0.4.8
       Compiling alloc-no-stdlib v2.0.3
       Compiling nodrop v0.1.14
       Compiling typenum v1.15.0
       Compiling convert_case v0.4.0
       Compiling percent-encoding v2.1.0
       Compiling thin-slice v0.1.1
       Compiling lazy_static v1.4.0
       Compiling crossbeam-utils v0.8.8
       Compiling crc32fast v1.3.2
       Compiling adler v1.0.2
       Compiling bytes v1.1.0
       Compiling same-file v1.0.6
       Compiling cty v0.2.2
       Compiling adler32 v1.2.0
       Compiling tao v0.7.0
       Compiling cpufeatures v0.2.2
       Compiling regex-syntax v0.6.25
       Compiling wry v0.14.0
       Compiling async-trait v0.1.53
       Compiling semver v1.0.7
       Compiling cfg_aliases v0.1.1
       Compiling fastrand v1.7.0
       Compiling base64 v0.13.0
       Compiling http-range v0.1.5
       Compiling waker-fn v1.1.0
       Compiling parking v2.0.0
       Compiling hashbrown v0.11.2
       Compiling remove_dir_all v0.5.3
       Compiling static_assertions v1.1.0
       Compiling glob v0.3.0
       Compiling state v0.5.2
       Compiling cfg-expr v0.10.2
    
    Source code(tar.gz)
    Source code(zip)
  • tauri-plugin-graphql-urql-v0.2.0(Apr 1, 2022)

    [0.2.0]

    • Add support for GraphQL subscriptions. Subscriptions provide a type-safe way to model real-time state changes. This feature is currently gated by the subscriptions flag but will be enabled by default in a future release.
      • d73c988 add changefiles on 2022-04-01
    • Breaking Change: The tauriExchange has been renamed and deprecated and will be removed in a future release. Please use invokeExchange instead.
      • d73c988 add changefiles on 2022-04-01

    pnpm Package Publish

    > [email protected] prepublishOnly /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql
    > pnpm run build
    
    
    > [email protected] build /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql
    > tsup
    
    CLI Building entry: index.ts
    CLI Using tsconfig: tsconfig.json
    CLI tsup v5.12.2
    CLI Using tsup config: /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql/tsup.config.ts
    CLI Target: node12
    CLI Cleaning output folder
    ESM Build start
    ESM ⚑️ Build success in 11ms
    ESM dist/index.mjs 3.68 KB
    DTS Build start
    DTS ⚑️ Build success in 1268ms
    DTS dist/index.d.ts 1.53 KB
    npm verb cli [
    npm verb cli   '/usr/local/bin/node',
    npm verb cli   '/usr/local/bin/npm',
    npm verb cli   'publish',
    npm verb cli   '--ignore-scripts',
    npm verb cli   'tauri-plugin-graphql-urql-0.2.0.tgz',
    npm verb cli   '--access',
    npm verb cli   'public',
    npm verb cli   '--loglevel',
    npm verb cli   'silly',
    npm verb cli   '--no-git-checks'
    npm verb cli ]
    npm info using [email protected]
    npm info using [email protected]
    npm timing npm:load:whichnode Completed in 0ms
    npm timing config:load:defaults Completed in 2ms
    npm timing config:load:file:/usr/local/lib/node_modules/npm/npmrc Completed in 1ms
    npm timing config:load:builtin Completed in 1ms
    npm timing config:load:cli Completed in 2ms
    npm timing config:load:env Completed in 1ms
    npm timing config:load:file:/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql/.npmrc Completed in 1ms
    npm timing config:load:project Completed in 13ms
    npm timing config:load:file:/home/runner/.npmrc Completed in 0ms
    npm timing config:load:user Completed in 1ms
    npm timing config:load:file:/usr/local/etc/npmrc Completed in 0ms
    npm timing config:load:global Completed in 0ms
    npm timing config:load:validate Completed in 0ms
    npm timing config:load:credentials Completed in 1ms
    npm timing config:load:setEnvs Completed in 1ms
    npm timing config:load Completed in 22ms
    npm timing npm:load:configload Completed in 22ms
    npm timing npm:load:setTitle Completed in 0ms
    npm timing config:load:flatten Completed in 3ms
    npm timing npm:load:display Completed in 5ms
    npm verb logfile /home/runner/.npm/_logs/2022-04-01T17_23_16_413Z-debug-0.log
    npm timing npm:load:logFile Completed in 6ms
    npm timing npm:load:timers Completed in 0ms
    npm timing npm:load:configScope Completed in 0ms
    npm timing npm:load Completed in 34ms
    npm verb publish [ 'tauri-plugin-graphql-urql-0.2.0.tgz' ]
    npm notice 
    npm notice πŸ“¦  [email protected]
    npm notice === Tarball Contents === 
    npm notice 1.1kB LICENSE        
    npm notice 926B  README.md      
    npm notice 1.6kB dist/index.d.ts
    npm notice 3.8kB dist/index.mjs 
    npm notice 1.7kB package.json   
    npm notice === Tarball Details === 
    npm notice name:          tauri-plugin-graphql-urql               
    npm notice version:       0.2.0                                   
    npm notice filename:      tauri-plugin-graphql-urql-0.2.0.tgz     
    npm notice package size:  3.5 kB                                  
    npm notice unpacked size: 9.0 kB                                  
    npm notice shasum:        7f0bb0801e49b56a7fa40f20b21dae8c8dcf9d69
    npm notice integrity:     sha512-y9Nfd0Ac7roP+[...]SyzFV+B8+RhlA==
    npm notice total files:   5                                       
    npm notice 
    npm notice Publishing to https://registry.npmjs.org/
    npm http fetch PUT 200 https://registry.npmjs.org/tauri-plugin-graphql-urql 749ms
    npm timing command:publish Completed in 837ms
    + [email protected]
    npm verb exit 0
    npm timing npm Completed in 1430ms
    npm info ok
    
    Source code(tar.gz)
    Source code(zip)
  • tauri-plugin-graphql-v0.1.0(Mar 30, 2022)

    [0.1.0]

    • Initial release.
      • 691ebc1 initial commit on 2022-03-30
      • 85e7726 update changefile on 2022-03-30

    Cargo Publish

    Updating crates.io index
       Packaging tauri-plugin-graphql v0.1.0 (/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql)
       Verifying tauri-plugin-graphql v0.1.0 (/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql)
       Compiling proc-macro2 v1.0.36
       Compiling unicode-xid v0.2.2
       Compiling syn v1.0.90
       Compiling serde_derive v1.0.136
       Compiling serde v1.0.136
       Compiling smallvec v1.8.0
       Compiling libc v0.2.121
       Compiling pkg-config v0.3.24
       Compiling heck v0.4.0
       Compiling cfg-if v1.0.0
       Compiling version-compare v0.1.0
       Compiling version_check v0.9.4
       Compiling anyhow v1.0.56
       Compiling autocfg v1.1.0
       Compiling ppv-lite86 v0.2.16
       Compiling memchr v2.4.1
       Compiling unicode-segmentation v1.9.0
       Compiling siphasher v0.3.10
       Compiling getrandom v0.1.16
       Compiling version-compare v0.0.11
       Compiling once_cell v1.10.0
       Compiling bitflags v1.3.2
       Compiling futures-core v0.3.21
       Compiling pin-project-lite v0.2.8
       Compiling futures-task v0.3.21
       Compiling futures-channel v0.3.21
       Compiling futures-util v0.3.21
       Compiling either v1.6.1
       Compiling futures-sink v0.3.21
       Compiling futures-io v0.3.21
       Compiling slab v0.4.5
       Compiling pin-utils v0.1.0
       Compiling strum v0.21.0
       Compiling proc-macro-hack v0.5.19
       Compiling fnv v1.0.7
       Compiling log v0.4.16
       Compiling matches v0.1.9
       Compiling parking_lot_core v0.9.2
       Compiling ucd-trie v0.1.3
       Compiling itoa v1.0.1
       Compiling scopeguard v1.1.0
       Compiling new_debug_unreachable v1.0.4
       Compiling serde_json v1.0.79
       Compiling precomputed-hash v0.1.1
       Compiling ryu v1.0.9
       Compiling tinyvec_macros v0.1.0
       Compiling strsim v0.10.0
       Compiling mac v0.1.1
       Compiling ident_case v1.0.1
       Compiling byteorder v1.4.3
       Compiling gio v0.15.10
       Compiling dtoa v0.4.8
       Compiling utf-8 v0.7.6
       Compiling typenum v1.15.0
       Compiling percent-encoding v2.1.0
       Compiling unicode-bidi v0.3.7
       Compiling alloc-no-stdlib v2.0.3
       Compiling stable_deref_trait v1.2.0
       Compiling convert_case v0.4.0
       Compiling rustversion v1.0.6
       Compiling nodrop v0.1.14
       Compiling itoa v0.4.8
       Compiling thin-slice v0.1.1
       Compiling lazy_static v1.4.0
       Compiling crossbeam-utils v0.8.8
       Compiling crc32fast v1.3.2
       Compiling adler v1.0.2
       Compiling bytes v1.1.0
       Compiling same-file v1.0.6
       Compiling tao v0.7.0
       Compiling cty v0.2.2
       Compiling adler32 v1.2.0
       Compiling regex-syntax v0.6.25
       Compiling wry v0.14.0
       Compiling cpufeatures v0.2.2
       Compiling async-trait v0.1.53
       Compiling base64 v0.13.0
       Compiling cfg_aliases v0.1.1
       Compiling http-range v0.1.5
       Compiling fastrand v1.7.0
       Compiling semver v1.0.7
       Compiling remove_dir_all v0.5.3
       Compiling static_assertions v1.1.0
       Compiling waker-fn v1.1.0
       Compiling hashbrown v0.11.2
       Compiling parking v2.0.0
       Compiling state v0.5.2
       Compiling glob v0.3.0
       Compiling cfg-expr v0.10.2
       Compiling cfg-expr v0.8.1
       Compiling cfg-expr v0.9.1
       Compiling instant v0.1.12
       Compiling gtk v0.15.4
       Compiling x11 v2.19.1
       Compiling x11-dl v2.19.1
       Compiling proc-macro-error-attr v1.0.4
       Compiling proc-macro-error v1.0.4
    
    Source code(tar.gz)
    Source code(zip)
  • tauri-plugin-graphql-urql-v0.1.1(Mar 30, 2022)

    [0.1.1]

    • Npm publish hotfix
      • 5ccffc3 npm publish hotfix on 2022-03-30

    pnpm Package Publish

    > [email protected] prepublishOnly /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql
    > pnpm run build
    
    
    > [email protected] build /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql
    > tsup
    
    CLI Building entry: index.ts
    CLI Using tsconfig: tsconfig.json
    CLI tsup v5.12.1
    CLI Using tsup config: /home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql/tsup.config.ts
    CLI Target: node12
    CLI Cleaning output folder
    ESM Build start
    ESM ⚑️ Build success in 10ms
    ESM dist/index.mjs 2.24 KB
    DTS Build start
    DTS ⚑️ Build success in 1633ms
    DTS dist/index.d.ts 457.00 B
    npm verb cli [
    npm verb cli   '/usr/local/bin/node',
    npm verb cli   '/usr/local/bin/npm',
    npm verb cli   'publish',
    npm verb cli   '--ignore-scripts',
    npm verb cli   'tauri-plugin-graphql-urql-0.1.1.tgz',
    npm verb cli   '--access',
    npm verb cli   'public',
    npm verb cli   '--loglevel',
    npm verb cli   'silly',
    npm verb cli   '--no-git-checks'
    npm verb cli ]
    npm info using [email protected]
    npm info using [email protected]
    npm timing npm:load:whichnode Completed in 0ms
    npm timing config:load:defaults Completed in 2ms
    npm timing config:load:file:/usr/local/lib/node_modules/npm/npmrc Completed in 6ms
    npm timing config:load:builtin Completed in 7ms
    npm timing config:load:cli Completed in 2ms
    npm timing config:load:env Completed in 1ms
    npm timing config:load:file:/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql/.npmrc Completed in 4ms
    npm timing config:load:project Completed in 19ms
    npm timing config:load:file:/home/runner/.npmrc Completed in 2ms
    npm timing config:load:user Completed in 2ms
    npm timing config:load:file:/usr/local/etc/npmrc Completed in 0ms
    npm timing config:load:global Completed in 0ms
    npm timing config:load:validate Completed in 0ms
    npm timing config:load:credentials Completed in 1ms
    npm timing config:load:setEnvs Completed in 1ms
    npm timing config:load Completed in 36ms
    npm timing npm:load:configload Completed in 36ms
    npm timing npm:load:setTitle Completed in 0ms
    npm timing config:load:flatten Completed in 2ms
    npm timing npm:load:display Completed in 5ms
    npm verb logfile /home/runner/.npm/_logs/2022-03-30T19_30_47_260Z-debug-0.log
    npm timing npm:load:logFile Completed in 11ms
    npm timing npm:load:timers Completed in 0ms
    npm timing npm:load:configScope Completed in 0ms
    npm timing npm:load Completed in 53ms
    npm verb publish [ 'tauri-plugin-graphql-urql-0.1.1.tgz' ]
    npm notice 
    npm notice πŸ“¦  [email protected]
    npm notice === Tarball Contents === 
    npm notice 1.1kB LICENSE        
    npm notice 926B  README.md      
    npm notice 457B  dist/index.d.ts
    npm notice 2.3kB dist/index.mjs 
    npm notice 1.7kB package.json   
    npm notice === Tarball Details === 
    npm notice name:          tauri-plugin-graphql-urql               
    npm notice version:       0.1.1                                   
    npm notice filename:      tauri-plugin-graphql-urql-0.1.1.tgz     
    npm notice package size:  2.7 kB                                  
    npm notice unpacked size: 6.4 kB                                  
    npm notice shasum:        a61507a8ea0f747f7274904768ae80dc6d60a36f
    npm notice integrity:     sha512-84C+Ij2ou/+63[...]0u5YqbhYe1JGg==
    npm notice total files:   5                                       
    npm notice 
    npm notice Publishing to https://registry.npmjs.org/
    + [email protected]
    npm timing command:publish Completed in 890ms
    npm verb exit 0
    npm timing npm Completed in 1656ms
    npm info ok
    
    Source code(tar.gz)
    Source code(zip)
  • tauri-plugin-graphql-urql-v0.1.0(Mar 30, 2022)

    [0.1.0]

    • Initial release.
      • 691ebc1 initial commit on 2022-03-30
      • 85e7726 update changefile on 2022-03-30

    pnpm Package Publish

    npm verb cli [
    npm verb cli   '/usr/local/bin/node',
    npm verb cli   '/usr/local/bin/npm',
    npm verb cli   'publish',
    npm verb cli   '--ignore-scripts',
    npm verb cli   'tauri-plugin-graphql-urql-0.1.0.tgz',
    npm verb cli   '--access',
    npm verb cli   'public',
    npm verb cli   '--loglevel',
    npm verb cli   'silly',
    npm verb cli   '--no-git-checks'
    npm verb cli ]
    npm info using [email protected]
    npm info using [email protected]
    npm timing npm:load:whichnode Completed in 0ms
    npm timing config:load:defaults Completed in 2ms
    npm timing config:load:file:/usr/local/lib/node_modules/npm/npmrc Completed in 1ms
    npm timing config:load:builtin Completed in 2ms
    npm timing config:load:cli Completed in 2ms
    npm timing config:load:env Completed in 1ms
    npm timing config:load:file:/home/runner/work/tauri-plugin-graphql/tauri-plugin-graphql/packages/urql/.npmrc Completed in 6ms
    npm timing config:load:project Completed in 15ms
    npm timing config:load:file:/home/runner/.npmrc Completed in 0ms
    npm timing config:load:user Completed in 1ms
    npm timing config:load:file:/usr/local/etc/npmrc Completed in 0ms
    npm timing config:load:global Completed in 0ms
    npm timing config:load:validate Completed in 0ms
    npm timing config:load:credentials Completed in 1ms
    npm timing config:load:setEnvs Completed in 1ms
    npm timing config:load Completed in 25ms
    npm timing npm:load:configload Completed in 25ms
    npm timing npm:load:setTitle Completed in 1ms
    npm timing config:load:flatten Completed in 3ms
    npm timing npm:load:display Completed in 6ms
    npm verb logfile /home/runner/.npm/_logs/2022-03-30T19_24_52_301Z-debug-0.log
    npm timing npm:load:logFile Completed in 6ms
    npm timing npm:load:timers Completed in 0ms
    npm timing npm:load:configScope Completed in 0ms
    npm timing npm:load Completed in 42ms
    npm verb publish [ 'tauri-plugin-graphql-urql-0.1.0.tgz' ]
    npm notice 
    npm notice πŸ“¦  [email protected]
    npm notice === Tarball Contents === 
    npm notice 1.1kB LICENSE     
    npm notice 926B  README.md   
    npm notice 1.7kB package.json
    npm notice === Tarball Details === 
    npm notice name:          tauri-plugin-graphql-urql               
    npm notice version:       0.1.0                                   
    npm notice filename:      tauri-plugin-graphql-urql-0.1.0.tgz     
    npm notice package size:  1.7 kB                                  
    npm notice unpacked size: 3.7 kB                                  
    npm notice shasum:        87d567bb566726e7b8f12e38c28c31039f29b60c
    npm notice integrity:     sha512-fIGiXde4zLtEm[...]b143G66c67UWg==
    npm notice total files:   3                                       
    npm notice 
    npm notice Publishing to https://registry.npmjs.org/
    + [email protected]
    npm timing command:publish Completed in 1095ms
    npm verb exit 0
    npm timing npm Completed in 2550ms
    npm info ok
    
    Source code(tar.gz)
    Source code(zip)
Owner
Jonas Kruckenberg
Dweberologist | Mintter | Tauri developer
Jonas Kruckenberg
A Raycast/Spotlight like app shell using tauri

Tauri Shell This repo can be used as reference for building alfred/raycast/spotlight apps using Tauri. Usage This reference repository is using Svelte

Shivaprasad Bhat 6 Oct 27, 2022
Bindings to the Tauri API for projects using wasm-bindgen

tauri-sys Raw bindings to the Tauri API for projects using wasm-bindgen Installation This crate is not yet published to crates.io, so you need to use

Jonas Kruckenberg 25 Jan 9, 2023
OpenAI ChatGPT desktop app for Mac, Windows, & Linux menubar using Tauri & Rust

ChatGPT Desktop App Unofficial open source OpenAI ChatGPT desktop app for mac, windows, and linux menubar using tauri & rust. Downloads Windows (2.7 M

Sonny Lazuardi 732 Jan 5, 2023
Ref Arch: Serverless GraphQL in Rust on AWS

A Whole Hog Reference Architecture for an Apollo Federation-Ready, Serverless, Rust-Based GraphQL Microservice on AWS using Cloud Development Kit (CDK)

Michael Edelman 3 Jan 12, 2022
Examples of how to use Rust with Serverless Framework, Lambda, API Gateway v1 and v2, SQS, GraphQL, etc

Rust Serverless Examples All examples live in their own directories: project: there is nothing here, just a simple cargo new project_name with a custo

Fernando Daciuk 9 Dec 17, 2022
Cross-platform Window library in Rust for Tauri. [WIP]

Cross-platform application window creation library in Rust that supports all major platforms like Windows, macOS, Linux, iOS and Android. Built for you, maintained for Tauri.

Tauri 899 Jan 1, 2023
Hydrogen is the desktop application for Geplauder, built with tauri studio.

Hydrogen Hydrogen is the desktop application for Geplauder, built with tauri studio. For more information on Geplauder, click here. Usage To configure

null 4 Nov 21, 2021
Helps positioning your tauri windows.

Tauri plugin positioner A plugin for tauri that helps positioning you windows at well known locations. Install Rust [dependencies] tauri-plugin-positi

Jonas Kruckenberg 42 Jan 5, 2023
A custom invoke system for Tauri that leverages a localhost server

Tauri Invoke HTTP This is a crate that provides a custom invoke system for Tauri using a localhost server. Each message is delivered through a XMLHttp

Tauri 17 Dec 17, 2022
This is a small demo to accompany the Tauri + Yew tutorial

Tauri + Yew Demo This is a small demo to accompany the Tauri + Yew tutorial

Steve Pryde 94 Jan 2, 2023
πŸ“¦ Port of tauri-bundler

?? Port of tauri-bundler You can now easily create installers for your Deno apps, thanks to the amazing work of Tauri ??

Marc EspΓ­n 28 Dec 7, 2022
Rust + Yew + Axum + Tauri, full-stack Rust development for Desktop apps.

rust-yew-axum-tauri-desktop template Rust + Yew + Axum + Tauri, full-stack Rust development for Desktop apps. Crates frontend: Yew frontend app for de

Jet Li 54 Dec 23, 2022
πŸ¦€ Small Tauri SolidJS Example feat. Vite

Tauri Solid Example (2022) Simple Solid(vite) starter running with Tauri. Should hopefully save some time trying to setup Tauri and Solid. Currently c

Luke Secomb 14 Oct 25, 2022
Tauri and Leptos example.

tauri-leptos-example Tauri Leptos Requires Rust Nightly. See Leptos nightly Note. # Install Tauri CLI cargo install tauri-cli # Build and develop for

Michal Vavra 5 Dec 6, 2022
A cross-platform tauri gui where Oblique Strategies meets Pomodoro

Obliqoro Oblique Strategies meets Pomodoro Built in Rust, Vue3, and Typescript, using Tauri, and SQLite Screenshots About Obliqoro is an open source,

Jack Wills 8 Dec 19, 2022
Web-wrapped Supabase desktop app for macOS, Windows & Linux powered by Tauri

Supabase Desktop App What is it? It's a cross-platform web-wrapped Supabase desktop app powered by Tauri. You can install it on your macOS, Windows (u

Abiel Zulio M 12 Jan 25, 2023
SimpleX Chat GUI built with Rust, Tauri and Yew

simplex-desktop A desktop application for simplex-chat. WIP, contributions are welcome. Architecture For the back end we rust with tauri and frontend

Simon Shine 5 Feb 28, 2023
A lightweight new Bing (AI chat) desktop application which based on Tauri.

Bing Lite A lightweight new Bing (AI chat) desktop application which based on Tauri. No more Microsoft Edge, no more Chromium/Electron! Download The l

a.e. 6 Apr 5, 2023
πŸ₯ƒ A plugin for swizzling Tauri’s NSWindow to NSPanel

Swizzle Tauri's NSWindow to NSPanel Install There are three general methods of installation that we can recommend. Use crates.io and npm (easiest, and

Victor Aremu 11 Mar 24, 2023