mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
877b38b370
**THIS PR HAS GIT CONFLICTS THAT MUST BE RESOLVED** This is the release commit being forwarded back to main for 1.33.4 Please ensure: - [x] Everything looks ok in the PR - [ ] The release has been published To make edits to this PR: ```shell git fetch upstream forward_v1.33.4 && git checkout -b forward_v1.33.4 upstream/forward_v1.33.4 ``` Don't need this PR? Close it. cc @levex Co-authored-by: levex <levex@users.noreply.github.com> Co-authored-by: Levente Kurusa <lkurusa@kernelstuff.org>
39 lines
754 B
TOML
39 lines
754 B
TOML
# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "serde_v8"
|
|
version = "0.98.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
description = "Rust to V8 serialization and deserialization"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
bytes.workspace = true
|
|
derive_more = "0.99.17"
|
|
num-bigint.workspace = true
|
|
serde.workspace = true
|
|
serde_bytes.workspace = true
|
|
smallvec = { workspace = true, features = ["union"] }
|
|
thiserror.workspace = true
|
|
v8.workspace = true
|
|
|
|
[dev-dependencies]
|
|
bencher.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
[[example]]
|
|
name = "basic"
|
|
|
|
[[bench]]
|
|
name = "de"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "ser"
|
|
harness = false
|