summaryrefslogtreecommitdiff
path: root/serde_v8/Cargo.toml
blob: 7bd1b7293a879b255c03c8d2bfc77cfe7f430a26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
[package]
name = "serde_v8"
version = "0.44.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
readme = "README.md"
repository = "https://github.com/denoland/deno"
description = "Rust to V8 serialization and deserialization"

[lib]
path = "lib.rs"

[dependencies]
derive_more = "0.99.17"
serde = { version = "1.0.136", features = ["derive"] }
v8 = "0.42.0"

[dev-dependencies]
bencher = "0.1"
serde_json = "1.0.64"

[[example]]
name = "basic"

[[bench]]
name = "de"
harness = false

[[bench]]
name = "ser"
harness = false