Skip to content

Commit

Permalink
Set chrono dependency to minimum of 0.4.27.
Browse files Browse the repository at this point in the history
  • Loading branch information
fdeantoni committed Oct 18, 2023
1 parent 6dfb1b2 commit ca87f0a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "prost-wkt"
version = "0.5.0"
version = "0.5.1"
authors = ["fdeantoni <fdeantoni@gmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/fdeantoni/prost-wkt"
Expand Down
2 changes: 1 addition & 1 deletion example/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "prost-wkt-example"
version = "0.5.0"
version = "0.5.1"
authors = ["fdeantoni <fdeantoni@gmail.com>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion wkt-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "prost-wkt-build"
version = "0.5.0"
version = "0.5.1"
authors = ["fdeantoni <fdeantoni@gmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/fdeantoni/prost-wkt"
Expand Down
8 changes: 4 additions & 4 deletions wkt-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "prost-wkt-types"
version = "0.5.0"
version = "0.5.1"
authors = ["fdeantoni <fdeantoni@gmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/fdeantoni/prost-wkt"
Expand All @@ -21,18 +21,18 @@ vendored-protoc = ["protobuf-src"]
vendored-protox = ["protox"]

[dependencies]
prost-wkt = { version = "0.5.0", path = ".." }
prost-wkt = { version = "0.5.1", path = ".." }
prost = "0.12.1"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
chrono = { version = "0.4", default-features = false, features = ["serde"] }
chrono = { version = "0.4.27", default-features = false, features = ["serde"] }

[build-dependencies]
prost = "0.12.1"
prost-types = "0.12.1"
prost-build = "0.12.1"
prost-wkt-build = { version = "0.5.0", path = "../wkt-build" }
prost-wkt-build = { version = "0.5.1", path = "../wkt-build" }
regex = "1"
protobuf-src = { version = "1.1.0", optional = true }
protox = { version = "0.5.0", optional = true }

0 comments on commit ca87f0a

Please sign in to comment.