2022-01-07 22:09:52 -05:00
|
|
|
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-10-19 18:00:45 -04:00
|
|
|
[package]
|
|
|
|
name = "serde_v8"
|
2022-04-22 10:54:42 -04:00
|
|
|
version = "0.42.0"
|
2021-10-19 18:00:45 -04:00
|
|
|
authors = ["the Deno authors"]
|
2021-11-02 10:03:37 -04:00
|
|
|
edition = "2021"
|
2021-10-19 18:00:45 -04:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
|
|
|
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-04-02 08:37:11 -04:00
|
|
|
derive_more = "0.99.17"
|
2021-10-19 18:00:45 -04:00
|
|
|
serde = { version = "1.0.130", features = ["derive"] }
|
2022-04-20 19:13:31 -04:00
|
|
|
v8 = "0.42.0"
|
2021-10-19 18:00:45 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
bencher = "0.1"
|
|
|
|
serde_json = "1.0.64"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "basic"
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "de"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "ser"
|
|
|
|
harness = false
|