Skip to content
This repository has been archived by the owner on Apr 15, 2022. It is now read-only.

Commit

Permalink
Throw away the top-level workspace
Browse files Browse the repository at this point in the history
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:

  rust-lang/cargo#7811
  rust-lang/cargo#7804
  https://github.com/rust-lang/rfcs/pull/2735/files
  • Loading branch information
npmccallum committed Jan 28, 2020
1 parent e9cd146 commit 1d0b2de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 1d0b2de

Please sign in to comment.