Skip to content

Commit

Permalink
Merge pull request holochain#1533 from holochain/chrono-fix
Browse files Browse the repository at this point in the history
update chrono version everywhere with bindgen removed
  • Loading branch information
neonphog authored Aug 18, 2022
2 parents bb54d21 + 9c13f2c commit 2307a01
Show file tree
Hide file tree
Showing 8 changed files with 512 additions and 445 deletions.
2 changes: 1 addition & 1 deletion crates/hc_sandbox/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ path = "src/bin/hc-sandbox.rs"
[dependencies]
anyhow = "1.0"
ansi_term = "0.12"
chrono = "0.4.6"
chrono = { version = "0.4.22", default-features = false, features = ["clock", "std", "oldtime", "serde"] }
futures = "0.3"
holochain_conductor_api = { path = "../holochain_conductor_api", version = "0.0.53"}
holochain_types = { path = "../holochain_types", version = "0.0.51"}
Expand Down
2 changes: 1 addition & 1 deletion crates/holochain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async-trait = "0.1"
base64 = "0.13"
byteorder = "1.3.4"
cfg-if = "0.1"
chrono = "0.4.6"
chrono = { version = "0.4.22", default-features = false, features = ["clock", "std", "oldtime", "serde"] }
derive_more = "0.99.3"
directories = "2.0.2"
either = "1.5.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/holochain_sqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ cfg-if = "0.1"
# pinned here with = to fix a compilation issue in a dependent crate.
# feel free to drop the = if it causes problems in the future.
chashmap = "=2.2.0"
chrono = "0.4.6"
chrono = { version = "0.4.22", default-features = false, features = ["clock", "std", "oldtime", "serde"] }
derive_more = "0.99.3"
either = "1.5.0"
fallible-iterator = "0.2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/holochain_state/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2021"

[dependencies]
byteorder = "1.3.4"
chrono = "0.4.6"
chrono = { version = "0.4.22", default-features = false, features = ["clock", "std", "oldtime", "serde"] }
derive_more = "0.99.3"
either = "1.5"
holochain_sqlite = { version = "0.0.49", path = "../holochain_sqlite" }
Expand Down
2 changes: 1 addition & 1 deletion crates/holochain_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ automap = { version = "0.1", features = ["serde"] }
backtrace = "0.3.27"
base64 = "0.13"
cfg-if = "0.1"
chrono = "0.4.6"
chrono = { version = "0.4.22", default-features = false, features = ["clock", "std", "oldtime", "serde"] }
derive_more = "0.99.3"
either = "1.5"
fixt = { path = "../fixt", version = "0.0.14"}
Expand Down
Loading

0 comments on commit 2307a01

Please sign in to comment.