mirror of
https://codeberg.org/icewind/nextcloud-config-parser.git
synced 2026-06-03 16:44:09 +02:00
bumb dependencies
This commit is contained in:
parent
d352001fb2
commit
88b4abd252
3 changed files with 10 additions and 10 deletions
2
.github/workflows/rust.yml
vendored
2
.github/workflows/rust.yml
vendored
|
|
@ -58,7 +58,7 @@ jobs:
|
|||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
profile: minimal
|
||||
toolchain: 1.56
|
||||
toolchain: 1.58
|
||||
override: true
|
||||
- uses: Swatinem/rust-cache@v1
|
||||
- uses: actions-rs/cargo@v1
|
||||
|
|
|
|||
16
Cargo.toml
16
Cargo.toml
|
|
@ -7,18 +7,18 @@ edition = "2021"
|
|||
license = "MIT OR Apache-2.0"
|
||||
repository = "https://github.com/icewind1991/nextcloud-config-parser"
|
||||
documentation = "https://docs.rs/nextcloud-config-parser"
|
||||
rust-version = "1.56"
|
||||
rust-version = "1.58"
|
||||
|
||||
[dependencies]
|
||||
redis = { version = "0.21", optional = true, default-features = false }
|
||||
thiserror = "1"
|
||||
php-literal-parser = "0.4"
|
||||
sqlx = { version = "0.6", default-features = false, features = ["runtime-tokio-rustls", "any", "mysql", "sqlite", "postgres"], optional = true }
|
||||
miette = "3"
|
||||
redis = { version = "0.21.6", optional = true, default-features = false }
|
||||
thiserror = "1.0.37"
|
||||
php-literal-parser = "0.5.0"
|
||||
sqlx = { version = "0.6.2", default-features = false, features = ["runtime-tokio-rustls", "any", "mysql", "sqlite", "postgres"], optional = true }
|
||||
miette = "5.3.0"
|
||||
|
||||
[dev-dependencies]
|
||||
sqlx = { version = "0.6", default-features = false, features = ["runtime-tokio-rustls", "any", "mysql", "sqlite", "postgres"] }
|
||||
miette = { version = "3", features = ["fancy"] }
|
||||
sqlx = { version = "0.6.2", default-features = false, features = ["runtime-tokio-rustls", "any", "mysql", "sqlite", "postgres"] }
|
||||
miette = { version = "5.3.0", features = ["fancy"] }
|
||||
|
||||
[features]
|
||||
db-sqlx = ["sqlx"]
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
in rec {
|
||||
# `nix develop`
|
||||
devShell = pkgs.mkShell {
|
||||
nativeBuildInputs = with pkgs; [rustc cargo bacon cargo-edit cargo-outdated clippy cargo-audit];
|
||||
nativeBuildInputs = with pkgs; [rustc cargo bacon cargo-edit cargo-outdated clippy cargo-audit cargo-msrv];
|
||||
};
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue