Updated test dependencies: uuid and glam (#576)
This commit is contained in:
parent
974abe8661
commit
922aba4b7a
15
Cargo.toml
15
Cargo.toml
|
|
@ -1,13 +1,14 @@
|
||||||
[workspace]
|
[workspace]
|
||||||
members = [
|
members = ["derive", "compatibility"]
|
||||||
"derive",
|
|
||||||
"compatibility"
|
|
||||||
]
|
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "bincode"
|
name = "bincode"
|
||||||
version = "2.0.0-rc.1" # remember to update html_root_url and bincode_derive
|
version = "2.0.0-rc.1" # remember to update html_root_url and bincode_derive
|
||||||
authors = ["Ty Overby <ty@pre-alpha.com>", "Zoey Riordan <zoey@dos.cafe>", "Victor Koenders <bincode@trangar.com>"]
|
authors = [
|
||||||
|
"Ty Overby <ty@pre-alpha.com>",
|
||||||
|
"Zoey Riordan <zoey@dos.cafe>",
|
||||||
|
"Victor Koenders <bincode@trangar.com>",
|
||||||
|
]
|
||||||
exclude = ["logo.svg", "examples/*", ".gitignore", ".github/"]
|
exclude = ["logo.svg", "examples/*", ".gitignore", ".github/"]
|
||||||
|
|
||||||
publish = true
|
publish = true
|
||||||
|
|
@ -40,9 +41,9 @@ serde_json = { version = "1.0", default-features = false }
|
||||||
tempfile = "3.2"
|
tempfile = "3.2"
|
||||||
criterion = "0.3"
|
criterion = "0.3"
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
uuid = { version = "0.8", features = ["serde"] }
|
uuid = { version = "1.1", features = ["serde"] }
|
||||||
chrono = { version = "0.4", features = ["serde"] }
|
chrono = { version = "0.4", features = ["serde"] }
|
||||||
glam = { version="0.20.5", features=["serde"] }
|
glam = { version = "0.21", features = ["serde"] }
|
||||||
|
|
||||||
[[bench]]
|
[[bench]]
|
||||||
name = "varint"
|
name = "varint"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue