diff options
Diffstat (limited to 'serde_v8')
-rw-r--r-- | serde_v8/Cargo.toml | 9 | ||||
-rw-r--r-- | serde_v8/README.md | 2 |
2 files changed, 8 insertions, 3 deletions
diff --git a/serde_v8/Cargo.toml b/serde_v8/Cargo.toml index 71cee640f..47639a99d 100644 --- a/serde_v8/Cargo.toml +++ b/serde_v8/Cargo.toml @@ -1,9 +1,12 @@ [package] name = "serde_v8" -version = "0.0.0" -authors = ["Aaron O'Mullan <aaron.omullan@gmail.com>"] +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"] } diff --git a/serde_v8/README.md b/serde_v8/README.md index 78703c42d..207f8baf4 100644 --- a/serde_v8/README.md +++ b/serde_v8/README.md @@ -1,5 +1,7 @@ # serde_v8 +Author: Aaron O'Mullan <aaron.omullan@gmail.com> + Serde support for encoding/decoding (rusty_)v8 values. Broadly `serde_v8` aims to provide an expressive but ~maximally efficient |