summaryrefslogtreecommitdiff
path: root/serde_v8
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2022-11-22 21:07:35 +0100
committerGitHub <noreply@github.com>2022-11-22 21:07:35 +0100
commit13e3acf71dd8443d8d158087d8c0a0cb72167f9a (patch)
tree7455c069643f10bc9de5d6c8993defddeda378fd /serde_v8
parent14904f6a2cac6b288a893add3e129c2668ea3a5a (diff)
chore: workspace inheritance (#16343)
Diffstat (limited to 'serde_v8')
-rw-r--r--serde_v8/Cargo.toml23
1 files changed, 12 insertions, 11 deletions
diff --git a/serde_v8/Cargo.toml b/serde_v8/Cargo.toml
index 228f0dc19..670025c9a 100644
--- a/serde_v8/Cargo.toml
+++ b/serde_v8/Cargo.toml
@@ -1,28 +1,29 @@
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+
[package]
name = "serde_v8"
version = "0.71.0"
-authors = ["the Deno authors"]
-edition = "2021"
-license = "MIT"
+authors.workspace = true
+edition.workspace = true
+license.workspace = true
readme = "README.md"
-repository = "https://github.com/denoland/deno"
+repository.workspace = true
description = "Rust to V8 serialization and deserialization"
[lib]
path = "lib.rs"
[dependencies]
-bytes = "=1.2.1"
+bytes.workspace = true
derive_more = "0.99.17"
-serde = { version = "1.0.136", features = ["derive"] }
-serde_bytes = "0.11"
-smallvec = { version = "1.8", features = ["union"] }
-v8 = { version = "0.55.0", default-features = false }
+serde.workspace = true
+serde_bytes.workspace = true
+smallvec = { workspace = true, features = ["union"] }
+v8.workspace = true
[dev-dependencies]
-bencher = "0.1"
-serde_json = "1.0.64"
+bencher.workspace = true
+serde_json.workspace = true
[[example]]
name = "basic"