Skip to content

Commit

Permalink
Merge branch 'mehcode:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
bigduu authored Jul 21, 2023
2 parents 4e18832 + 35f475c commit be0c997
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v3.5.0
uses: actions/checkout@v3.5.3

- name: Install toolchain
uses: dtolnay/rust-toolchain@master
Expand All @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v3.5.0
uses: actions/checkout@v3.5.3

- name: Install toolchain
uses: dtolnay/rust-toolchain@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gitlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
commit-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.0
- uses: actions/checkout@v3.5.3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v3.5.0
uses: actions/checkout@v3.5.3

- name: Install toolchain
uses: dtolnay/rust-toolchain@master
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
- nightly
steps:
- name: Checkout sources
uses: actions/checkout@v3.5.0
uses: actions/checkout@v3.5.3

- name: Install toolchain
uses: dtolnay/rust-toolchain@master
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
- beta
steps:
- name: Checkout sources
uses: actions/checkout@v3.5.0
uses: actions/checkout@v3.5.3

- name: Install toolchain
uses: dtolnay/rust-toolchain@master
Expand All @@ -99,7 +99,7 @@ jobs:
- stable
steps:
- name: Checkout sources
uses: actions/checkout@v3.5.0
uses: actions/checkout@v3.5.3

- name: Install toolchain
uses: dtolnay/rust-toolchain@master
Expand All @@ -122,7 +122,7 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v3.5.0
uses: actions/checkout@v3.5.3

- name: Install toolchain
uses: dtolnay/rust-toolchain@master
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ readme = "README.md"
keywords = ["config", "configuration", "settings", "env", "environment"]
authors = ["Ryan Leckey <leckey.ryan@gmail.com>"]
categories = ["config"]
license = "MIT/Apache-2.0"
license = "MIT OR Apache-2.0"
edition = "2018"

[badges]
Expand All @@ -33,10 +33,10 @@ async-trait = { version = "0.1.50", optional = true }
toml = { version = "0.7", optional = true }
serde_json = { version = "1.0.2", optional = true }
yaml-rust = { version = "0.4", optional = true }
rust-ini = { version = "0.18", optional = true }
rust-ini = { version = "0.19", optional = true }
ron = { version = "0.8", optional = true }
json5_rs = { version = "0.4", optional = true, package = "json5" }
indexmap = { version = "1.7.0", features = ["serde-1"], optional = true}
indexmap = { version = "2.0.0", features = ["serde"], optional = true }
convert_case = { version = "0.6", optional = true }
pathdiff = "0.2"

Expand All @@ -45,13 +45,13 @@ serde_derive = "1.0.8"
float-cmp = "0.9"
chrono = { version = "0.4", features = ["serde"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs", "io-util", "time"]}
warp = "=0.3.3"
warp = "=0.3.5"
futures = "0.3.15"
reqwest = "0.11.10"

serde = "1.0"
glob = "0.3"
lazy_static = "1"
notify = "^5.0.0"
notify = "^6.0.0"
temp-env = "0.3.0"
log = { version = "0.4", features = ["serde"] }
2 changes: 1 addition & 1 deletion tests/file_ini.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ fn test_error_parse() {
assert_eq!(
res.unwrap_err().to_string(),
format!(
r#"2:0 expecting "[Some('='), Some(':')]" but found EOF. in {}"#,
r#"3:1 expecting "[Some('='), Some(':')]" but found EOF. in {}"#,
path.display()
)
);
Expand Down
2 changes: 1 addition & 1 deletion tests/legacy/file_ini.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ fn test_error_parse() {
assert_eq!(
res.unwrap_err().to_string(),
format!(
r#"2:0 expecting "[Some('='), Some(':')]" but found EOF. in {}"#,
r#"3:1 expecting "[Some('='), Some(':')]" but found EOF. in {}"#,
path.display()
)
);
Expand Down

0 comments on commit be0c997

Please sign in to comment.