1
0
Fork 0
forked from wry/wry

autocommit 2022-03-23 16:10:46 CET

This commit is contained in:
Julian Orth 2022-03-23 16:10:46 +01:00
parent 5e9e8c3a94
commit d7f298ab5f
2 changed files with 7 additions and 7 deletions

8
Cargo.lock generated
View file

@ -77,18 +77,18 @@ dependencies = [
[[package]]
name = "bincode"
version = "2.0.0-beta.3"
version = "2.0.0-rc.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d20beb3a5bf7c149e1c9cfe54a53eab9c31e7f00ab74e734e05272c65be4b61f"
checksum = "f609ceb2c41b0d0277314a789ef0e7eb14593d5485f7c67320bed3924ebb1b33"
dependencies = [
"bincode_derive",
]
[[package]]
name = "bincode_derive"
version = "2.0.0-beta.3"
version = "2.0.0-rc.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb2390a472627bfe18ac250746d32a47d91c4720faacc3d21147298d67063e49"
checksum = "913287a8f3e00db4c7ae1b87e9b9b8cebd6b89217eaadfc281fa5c897da35dc3"
dependencies = [
"virtue",
]

View file

@ -31,8 +31,8 @@ rand = "0.8.4"
smallvec = { version = "1.8.0", features = ["const_generics", "const_new", "union"] }
backtrace = { version = "0.3.64", optional = true }
byteorder = "1.4.3"
chrono = "0.4.19"
bincode = "2.0.0-beta.3"
chrono = { version = "0.4.19", optional = true }
bincode = "2.0.0-rc.1"
jay-config = { path = "jay-config" }
default-config = { path = "default-config" }
pin-project = "1.0.10"
@ -46,4 +46,4 @@ bstr = "0.2.17"
#opt-level = 3
[features]
rc_tracking = ["backtrace"]
rc_tracking = ["backtrace", "chrono"]