Skip to content

Commit a4d1377

Browse files
authored
Bump time crate (#788)
* Bump `time` crate * Fix CI * Fix CI
1 parent 2e86ab6 commit a4d1377

File tree

14 files changed

+15
-15
lines changed

14 files changed

+15
-15
lines changed

.github/workflows/diesel.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
steps:
4545
- uses: actions/checkout@v3
4646
- uses: dtolnay/rust-toolchain@stable
47-
- run: cargo update --manifest-path sea-query-diesel/Cargo.toml --workspace -p bigdecimal:0.4.2 --precise 0.3.1
47+
- run: cargo update --manifest-path sea-query-diesel/Cargo.toml --workspace -p bigdecimal:0.4.5 --precise 0.3.1
4848
- run: cargo build --manifest-path sea-query-diesel/Cargo.toml --workspace --features postgres,sqlite,mysql --features=with-chrono,with-json,with-rust_decimal,with-bigdecimal,with-uuid,with-time,with-ipnetwork,with-mac_address,postgres-array
4949
- run: cargo build --manifest-path sea-query-diesel/Cargo.toml --workspace --features postgres,sqlite,mysql --features=with-chrono
5050
- run: cargo build --manifest-path sea-query-diesel/Cargo.toml --workspace --features postgres,sqlite,mysql --features=with-json
@@ -157,6 +157,6 @@ jobs:
157157
steps:
158158
- uses: actions/checkout@v3
159159
- uses: dtolnay/rust-toolchain@stable
160-
- run: cargo update --manifest-path examples/${{ matrix.example }}/Cargo.toml -p bigdecimal:0.4.2 --precise 0.3.1
160+
- run: cargo update --manifest-path examples/${{ matrix.example }}/Cargo.toml -p bigdecimal:0.4.5 --precise 0.3.1
161161
- run: cargo build --manifest-path examples/${{ matrix.example }}/Cargo.toml
162162
- run: cargo run --manifest-path examples/${{ matrix.example }}/Cargo.toml

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ postgres-types = { version = "0", default-features = false, optional = true }
3838
rust_decimal = { version = "1", default-features = false, optional = true }
3939
bigdecimal = { version = "0.3", default-features = false, optional = true }
4040
uuid = { version = "1", default-features = false, optional = true }
41-
time = { version = "0.3", default-features = false, optional = true, features = ["macros", "formatting"] }
41+
time = { version = "0.3.36", default-features = false, optional = true, features = ["macros", "formatting"] }
4242
ipnetwork = { version = "0.20", default-features = false, optional = true }
4343
mac_address = { version = "1.1", default-features = false, optional = true }
4444
ordered-float = { version = "3.4", default-features = false, optional = true }

examples/diesel_mysql/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88

99
[dependencies]
1010
chrono = { version = "0.4", default-features = false, features = ["clock"] }
11-
time = { version = "0.3", features = ["parsing", "macros"] }
11+
time = { version = "0.3.36", features = ["parsing", "macros"] }
1212
serde_json = { version = "1" }
1313
uuid = { version = "1", features = ["serde", "v4"] }
1414
diesel = { version = "2.1.1", features = ["mysql"] }

examples/diesel_postgres/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88

99
[dependencies]
1010
chrono = { version = "0.4", default-features = false, features = ["clock"] }
11-
time = { version = "0.3", features = ["parsing", "macros"] }
11+
time = { version = "0.3.36", features = ["parsing", "macros"] }
1212
serde_json = { version = "1" }
1313
uuid = { version = "1", features = ["serde", "v4"] }
1414
ipnetwork = { version = "0.20" }

examples/diesel_sqlite/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88

99
[dependencies]
1010
chrono = { version = "0.4", default-features = false, features = ["clock"] }
11-
time = { version = "0.3", features = ["parsing", "macros"] }
11+
time = { version = "0.3.36", features = ["parsing", "macros"] }
1212
serde_json = { version = "1" }
1313
uuid = { version = "1", features = ["serde", "v4"] }
1414
diesel = { version = "2.1.1", features = ["sqlite"] }

examples/postgres/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99

1010
[dependencies]
1111
chrono = { version = "0.4", default-features = false, features = ["clock"] }
12-
time = { version = "0.3", features = ["macros"] }
12+
time = { version = "0.3.36", features = ["macros"] }
1313
uuid = { version = "1", features = ["serde", "v4"] }
1414
serde_json = "1"
1515
rust_decimal = { version = "1" }

examples/rusqlite/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99

1010
[dependencies]
1111
chrono = { version = "0.4", default-features = false, features = ["clock"] }
12-
time = { version = "0.3", features = ["parsing", "macros"] }
12+
time = { version = "0.3.36", features = ["parsing", "macros"] }
1313
serde_json = { version = "1" }
1414
uuid = { version = "1", features = ["serde", "v4"] }
1515
rusqlite = { version = "0.31" }

examples/sqlx_any/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99

1010
[dependencies]
1111
chrono = { version = "0.4", default-features = false, features = ["clock"] }
12-
time = "0.3"
12+
time = "0.3.36"
1313
uuid = { version = "1", features = ["serde", "v4"] }
1414
serde_json = "1"
1515
rust_decimal = { version = "1" }

examples/sqlx_mysql/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99

1010
[dependencies]
1111
chrono = { version = "0.4", default-features = false, features = ["clock"] }
12-
time = { version = "0.3", features = ["macros"] }
12+
time = { version = "0.3.36", features = ["macros"] }
1313
uuid = { version = "1", features = ["serde", "v4"] }
1414
serde_json = "1"
1515
rust_decimal = { version = "1" }

examples/sqlx_postgres/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99

1010
[dependencies]
1111
chrono = { version = "0.4", default-features = false, features = ["clock"] }
12-
time = { version = "0.3", features = ["macros"] }
12+
time = { version = "0.3.36", features = ["macros"] }
1313
uuid = { version = "1", features = ["serde", "v4"] }
1414
serde_json = "1"
1515
rust_decimal = { version = "1" }

examples/sqlx_sqlite/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99

1010
[dependencies]
1111
chrono = { version = "0.4", default-features = false, features = ["clock"] }
12-
time = { version = "0.3", features = ["macros"] }
12+
time = { version = "0.3.36", features = ["macros"] }
1313
uuid = { version = "1", features = ["serde", "v4"] }
1414
serde_json = "1"
1515
async-std = { version = "1.8", features = [ "attributes" ] }

sea-query-binder/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ chrono = { version = "0.4", default-features = false, optional = true, features
2424
rust_decimal = { version = "1", default-features = false, optional = true }
2525
bigdecimal = { version = "0.3", default-features = false, optional = true }
2626
uuid = { version = "1", default-features = false, optional = true }
27-
time = { version = "<0.3.35", default-features = false, optional = true, features = ["macros", "formatting"] }
27+
time = { version = "0.3.36", default-features = false, optional = true, features = ["macros", "formatting"] }
2828
ipnetwork = { version = "0.20", default-features = false, optional = true }
2929
mac_address = { version = "1.1", default-features = false, optional = true }
3030

sea-query-diesel/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ diesel = { version = "2.1.1", features = [
2424
bigdecimal = { version = "0.3", default-features = false, optional = true }
2525
rust_decimal = { version = "1", default-features = false, optional = true }
2626
chrono = { version = "0.4", default-features = false, optional = true }
27-
time = { version = "0.3", default-features = false, optional = true }
27+
time = { version = "0.3.36", default-features = false, optional = true }
2828
uuid = { version = "1", default-features = false, optional = true }
2929
serde_json = { version = "1", default-features = false, optional = true }
3030
ipnetwork = { version = "0.20", default-features = false, optional = true }

sea-query-rbatis/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ chrono = { version = "0.4", default-features = false, optional = true, features
2424
rust_decimal = { version = "1", default-features = false, optional = true }
2525
bigdecimal = { version = "0.3", default-features = false, optional = true }
2626
uuid = { version = "1", default-features = false, optional = true }
27-
time = { version = "0.3", default-features = false, optional = true, features = ["macros", "formatting"] }
27+
time = { version = "0.3.36", default-features = false, optional = true, features = ["macros", "formatting"] }
2828
ipnetwork = { version = "0.20", default-features = false, optional = true }
2929
mac_address = { version = "1.1", default-features = false, optional = true }
3030

0 commit comments

Comments
 (0)