summaryrefslogtreecommitdiff
path: root/serde_v8/Cargo.toml
blob: 47639a99d28e1aafcf67c351563bcefd11d17852 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[package]
name = "serde_v8"
version = "0.1.0"
authors = ["the Deno authors"]
edition = "2018"
description = "Rust to V8 serialization and deserialization"
license = "MIT"
readme = "README.md"
repository = "https://github.com/denoland/deno"

[dependencies]
serde = { version = "1.0.123", features = ["derive"] }
rusty_v8 = "0.21.0"

[dev-dependencies]
serde_json = "1.0.62"

[[example]]
name = "basic"