mirror of
https://github.com/denoland/deno.git
synced 2024-11-30 16:40:57 -05:00
12ba2d311b
Bumped versions for 1.33.3 Please ensure: - [x] Target branch is correct (`vX.XX` if a patch release, `main` if minor) - [x] Crate versions are bumped correctly - [x] deno_std version is incremented in the code (see `cli/deno_std.rs`) - [x] Releases.md is updated correctly (think relevancy and remove reverts) To make edits to this PR: ```shell git fetch upstream release_1_33.3 && git checkout -b release_1_33.3 upstream/release_1_33.3 ``` 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.97.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
|