diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2020-07-23 13:20:08 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-23 13:20:08 -0400 |
| commit | c2507d95f5a196791bca83630198c064a1fb460a (patch) | |
| tree | c1bfc67446f4ae06f43b6977a95225cc58d648e2 /core | |
| parent | 218be6a269644a95bdef7fc678b5618d5d7ce9a7 (diff) | |
Align cargo dependency features (#6860)
Diffstat (limited to 'core')
| -rw-r--r-- | core/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml index 065948f82..8aa3fb9c5 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -15,12 +15,12 @@ path = "lib.rs" [dependencies] downcast-rs = "1.1.1" -futures = { version = "0.3.5", features = ["thread-pool", "compat"] } +futures = "0.3.5" lazy_static = "1.4.0" libc = "0.2.71" log = "0.4.8" rusty_v8 = "0.7.0" -serde_json = "1.0.55" +serde_json = { version = "1.0.55", features = [ "preserve_order" ] } smallvec = "1.4.0" url = "2.1.1" |
