Update redis

Signed-off-by: Jakub Onderka <jakub.onderka@gmail.com>
This commit is contained in:
Jakub Onderka 2022-10-20 18:26:54 +02:00 committed by GitHub
commit 2c941a346c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -58,7 +58,7 @@ jobs:
- uses: actions-rs/toolchain@v1 - uses: actions-rs/toolchain@v1
with: with:
profile: minimal profile: minimal
toolchain: 1.58 toolchain: 1.59
override: true override: true
- uses: Swatinem/rust-cache@v1 - uses: Swatinem/rust-cache@v1
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1

View file

@ -1,16 +1,16 @@
[package] [package]
name = "nextcloud-config-parser" name = "nextcloud-config-parser"
description = "Rust parser for nextcloud config files" description = "Rust parser for nextcloud config files"
version = "0.6.0" version = "0.7.0"
authors = ["Robin Appelman <robin@icewind.nl>"] authors = ["Robin Appelman <robin@icewind.nl>"]
edition = "2021" edition = "2021"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
repository = "https://github.com/icewind1991/nextcloud-config-parser" repository = "https://github.com/icewind1991/nextcloud-config-parser"
documentation = "https://docs.rs/nextcloud-config-parser" documentation = "https://docs.rs/nextcloud-config-parser"
rust-version = "1.58" rust-version = "1.59"
[dependencies] [dependencies]
redis = { version = "0.21.6", optional = true, default-features = false } redis = { version = "0.22.1", optional = true, default-features = false }
thiserror = "1.0.37" thiserror = "1.0.37"
php-literal-parser = "0.5.0" php-literal-parser = "0.5.0"
sqlx = { version = "0.6.2", default-features = false, features = ["runtime-tokio-rustls", "any", "mysql", "sqlite", "postgres"], optional = true } sqlx = { version = "0.6.2", default-features = false, features = ["runtime-tokio-rustls", "any", "mysql", "sqlite", "postgres"], optional = true }