mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 21:31:04 +00:00
cdc44450f5
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
16 lines
333 B
TOML
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" }
|