diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-08-22 22:30:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-22 22:30:14 -0700 |
commit | bc467b265fbe06ace24f5d9536bd8eb36ae4a601 (patch) | |
tree | 6c1761c852398a63fe31fc912841b449fe3851c3 /cli/main.rs | |
parent | 47c216317f8eb5bf277663a732a79f6b07ba79ef (diff) |
introduce JSON serialization for ops (#2799)
Converts env(), exit(), execPath(), utime() and utimeSync() to use JSON
instead of flatbuffers.
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/main.rs b/cli/main.rs index 3f8f113b2..2e82b8ee8 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -13,6 +13,8 @@ extern crate indexmap; #[cfg(unix)] extern crate nix; extern crate rand; +extern crate serde; +extern crate serde_derive; extern crate url; mod ansi; |