gecko-dev/remote/Cargo.toml
Andreas Tolfsen cdc44450f5 bug 1598286: remote: upgrade to http 0.2 r=remote-protocol-reviewers,whimboo
Upgrading to http 0.2 will give us bytes ^0.5 which removes
a dependency on iovec.  iovec is problematic for us because it
depends on a version of winapi that does not compile on Windows AArch64.

The effect of this should be that the remote agent is now possible
to compile on Windows AArch64.

Differential Revision: https://phabricator.services.mozilla.com/D58765

--HG--
extra : moz-landing-system : lando
2020-01-06 14:24:17 +00:00

16 lines
333 B
TOML

[package]
name = "remote"
version = "0.1.0"
[lib]
path = "lib.rs"
[dependencies]
failure = { version = "0.1", default_features = false, features = ["derive"] }
http = "0.2"
libc = "0.2"
log = "0.4"
nserror = { path = "../xpcom/rust/nserror" }
nsstring = { path = "../xpcom/rust/nsstring" }
xpcom = { path = "../xpcom/rust/xpcom" }