mirror of
https://codeberg.org/icewind/nextcloud-config-parser.git
synced 2026-06-03 08:34:13 +02:00
commit
3064e850fa
2 changed files with 7 additions and 6 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.54
|
||||
toolchain: 1.56
|
||||
override: true
|
||||
- uses: Swatinem/rust-cache@v1
|
||||
- uses: actions-rs/cargo@v1
|
||||
|
|
|
|||
11
Cargo.toml
11
Cargo.toml
|
|
@ -1,22 +1,23 @@
|
|||
[package]
|
||||
name = "nextcloud-config-parser"
|
||||
description = "Rust parser for nextcloud config files"
|
||||
version = "0.5.0"
|
||||
version = "0.6.0"
|
||||
authors = ["Robin Appelman <robin@icewind.nl>"]
|
||||
edition = "2018"
|
||||
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"
|
||||
|
||||
[dependencies]
|
||||
redis = { version = "0.21", optional = true }
|
||||
redis = { version = "0.21", optional = true, default-features = false }
|
||||
thiserror = "1"
|
||||
php-literal-parser = "0.4"
|
||||
sqlx = { version = "0.5", features = ["any", "mysql", "sqlite", "postgres"], optional = true }
|
||||
sqlx = { version = "0.6", default-features = false, features = ["runtime-tokio-rustls", "any", "mysql", "sqlite", "postgres"], optional = true }
|
||||
miette = "3"
|
||||
|
||||
[dev-dependencies]
|
||||
sqlx = { version = "0.5", features = ["runtime-tokio-rustls", "any", "mysql", "sqlite", "postgres"] }
|
||||
sqlx = { version = "0.6", default-features = false, features = ["runtime-tokio-rustls", "any", "mysql", "sqlite", "postgres"] }
|
||||
miette = { version = "3", features = ["fancy"] }
|
||||
|
||||
[features]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue