Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update all dependencies
Browse files Browse the repository at this point in the history
renovate[bot] authored Nov 28, 2023
1 parent 4137856 commit ecce88e
Showing 5 changed files with 180 additions and 143 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docgen.yml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ jobs:
- os: ubuntu-22.04
url: https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.tar.gz
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: date +%F > todays-date
- name: Restore cache for today's nightly.
uses: actions/cache@v3
4 changes: 2 additions & 2 deletions .github/workflows/nix.yaml
Original file line number Diff line number Diff line change
@@ -17,8 +17,8 @@ jobs:

name: nix-build (${{ matrix.os }})
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v24
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- run: nix build
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ jobs:
- os: macos-latest
rev: nightly/nvim-macos.tar.gz
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: date +%F > todays-date
- name: Restore from todays cache
uses: actions/cache@v3
@@ -76,7 +76,7 @@ jobs:
- os: macos-latest
rev: nightly/nvim-macos.tar.gz
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: date +%F > todays-date
- name: Restore from todays cache
uses: actions/cache@v3
299 changes: 168 additions & 131 deletions Cargo.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -19,31 +19,31 @@ graphql_client.workspace = true
reqwest.workspace = true
lsp-types.workspace = true

regex = "1.9.1"
futures = "0.3.28"
lsp-server = "0.7.2"
regex = "1.10.2"
futures = "0.3.29"
lsp-server = "0.7.4"
log4rs = "1.2"
log = "0.4"
once_cell = "1"

sg-gql = { path = "crates/sg-gql" }
sg-types = { path = "crates/sg-types" }
jsonrpc = { path = "crates/jsonrpc" }
gix = "0.52.0"
gix = "0.55.2"

[workspace.dependencies]
anyhow = "1"
tokio = { version = "1", features = ["full"] }

serde = "1.0.180"
serde = "1.0.193"
serde_json = "1.0"

graphql_client = { version = "0.13.0", features = ["reqwest", "reqwest-blocking"] }
reqwest = { version = "0.11", features = ["native-tls-vendored"] }
openssl = { version = "0.10", features = ["vendored"] }

lsp-types = "0.94.0"
url = "2.4.0"
lsp-types = "0.94.1"
url = "2.5.0"

# Config for 'cargo dist'
[workspace.metadata.dist]

0 comments on commit ecce88e

Please sign in to comment.