diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2019-11-17 01:17:47 +0100 |
---|---|---|
committer | Ry Dahl <ry@tinyclouds.org> | 2019-11-16 19:17:47 -0500 |
commit | 8f9a942cb911ed017eb128e9fbeb6f9a48e69601 (patch) | |
tree | 4f56623262f84becac18546d9da3d5d9ce9c8735 /cli/compilers/mod.rs | |
parent | cb00fd6e988184420f842b1e77ca4cf627d32773 (diff) |
Use futures 0.3 API (#3358)
Diffstat (limited to 'cli/compilers/mod.rs')
-rw-r--r-- | cli/compilers/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/compilers/mod.rs b/cli/compilers/mod.rs index dca5bc7b6..4f32f0b3f 100644 --- a/cli/compilers/mod.rs +++ b/cli/compilers/mod.rs @@ -19,4 +19,4 @@ pub struct CompiledModule { } pub type CompiledModuleFuture = - dyn Future<Item = CompiledModule, Error = ErrBox> + Send; + dyn Future<Output = Result<CompiledModule, ErrBox>> + Send; |