2023-01-02 16:00:42 -05:00
|
|
|
# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
2022-11-22 15:07:35 -05:00
|
|
|
|
2021-10-19 18:00:45 -04:00
|
|
|
[package]
|
|
|
|
name = "serde_v8"
|
2023-03-10 03:39:29 -05:00
|
|
|
version = "0.85.0"
|
2022-11-22 15:07:35 -05:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2021-10-19 18:00:45 -04:00
|
|
|
readme = "README.md"
|
2022-11-22 15:07:35 -05:00
|
|
|
repository.workspace = true
|
2021-10-19 18:00:45 -04:00
|
|
|
description = "Rust to V8 serialization and deserialization"
|
|
|
|
|
2022-03-24 06:23:40 -04:00
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
2021-10-19 18:00:45 -04:00
|
|
|
[dependencies]
|
2022-11-22 15:07:35 -05:00
|
|
|
bytes.workspace = true
|
2022-04-02 08:37:11 -04:00
|
|
|
derive_more = "0.99.17"
|
2022-11-22 15:07:35 -05:00
|
|
|
serde.workspace = true
|
|
|
|
serde_bytes.workspace = true
|
|
|
|
smallvec = { workspace = true, features = ["union"] }
|
|
|
|
v8.workspace = true
|
2021-10-19 18:00:45 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-11-22 15:07:35 -05:00
|
|
|
bencher.workspace = true
|
|
|
|
serde_json.workspace = true
|
2021-10-19 18:00:45 -04:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "basic"
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "de"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "ser"
|
|
|
|
harness = false
|