From 1d0b2de8df73ab5f4e34fdbaf961363de082f406 Mon Sep 17 00:00:00 2001 From: Nathaniel McCallum Date: Mon, 27 Jan 2020 20:21:38 +0000 Subject: [PATCH] Throw away the top-level workspace Cargo currently cannot handle our needs. It cannot build static binaries with the standard entry point on glibc. Nor can it build cdylib or static binaries with a custom entry point on musl. Nor can it build different crates for different targets in the same workspace. While we work to resolve these issues in upstream cargo, we need to ditch the top-level workspace for now. We can revisit this at a later time. For more background, see: https://github.com/rust-lang/cargo/pull/7811 https://github.com/rust-lang/cargo/pull/7804 https://github.com/rust-lang/rfcs/pull/2735/files --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 439cdae..d22262f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,6 @@ edition = "2018" default = [] [dependencies] -openssl = { version = "0.10.26", optional = true, features = [ "vendored" ] } +openssl = { version = "0.10.26", optional = true } bitflags = "1.2.1" codicon = "2.1.0"