You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[package]
name = "workspacer"
version = "0.1.0"
authors = ["ustulation <[email protected]>"]
[workspace]
members = ["safe_core", "safe_authenticator", "safe_app"]
# If this is removed then each of the sub-projects will have thier own Cargo.lock file
# will build binaries/objects in their own target/ directories. With this present, it's
# always the parent-projects Cargo.lock and target/ directory used. Need to check if this
# is standard behaviour or some bug about to be fixed.
[lib]
crate_type = ["rlib", "cdylib", "staticlib"]
A lib called safe_core which only needs to produce a .rlib
[package]
authors = ["ustulation <[email protected]>"]
name = "safe_core"
version = "0.1.0"
[dependencies]
maidsafe_utilities = "~0.10.0"
A lib called safe_app which depends on safe_core and needs to produce all 3 .rlib, .a and .so:
If I go to safe_core and build, it creates a target/ folder and Cargo.lock files inside the top level workspacer/, which is good.
If I go to safe_authenticator folder and build that it too uses the same target/ and Cargo.lock files and hence does not recompile safe_core which is what I want too. Same with safe_app.
However if I remove the [lib] section from the top-level workspacer/Cargo.toml, each of the sub-projects start creating their own Cargo.lock files and their own /target directories inside their respective sub-directories. I have mentioned this in the inline comment in the Cargo.toml of workspacer above (the 1st snippet above).
So remove the [lib] section from workspacer/Carg.toml as the question says in the inline comment, cd to safe_app/, run cargo test. It will produce safe_app/Cargo.lock and safe_app/target/.... instead of in project dir workspacer.
Okey, so without [lib] section workspacer/Cargo.toml is an invalid manifest. If you run cargo build in the workspacer dir, you'll get
error: failed to parse manifest at `/home/user/trash/workspacer/Cargo.toml`
Caused by:
no targets specified in the manifest
either src/lib.rs, src/main.rs, a [lib] section, or [[bin]] section must be present
And because of this, safe_app does not think that it is within the workspace.
The workaround would be to remove the [package] key from workspacer/Cargo.toml, such that it is a valid so called virtual manifest:
[workspace]
members = ["safe_core", "safe_authenticator", "safe_app"]
However this looks like a bug. Perhaps we should not ignore errors here:
As explained here :
System:
Steps to reproduce:
Top-level:
A lib called safe_core which only needs to produce a
.rlib
A lib called safe_app which depends on safe_core and needs to produce all 3
.rlib
,.a
and.so
:A lib called safe_authenticator which depends on safe_core and needs to produce all 3
.rlib
,.a
and.so
:The tree looks like:
If I go to safe_core and build, it creates a target/ folder and Cargo.lock files inside the top level workspacer/, which is good.
If I go to
safe_authenticator
folder and build that it too uses the sametarget/
andCargo.lock
files and hence does not recompilesafe_core
which is what I want too. Same withsafe_app
.However if I remove the
[lib]
section from the top-levelworkspacer/Cargo.toml
, each of the sub-projects start creating their ownCargo.lock
files and their own/target
directories inside their respective sub-directories. I have mentioned this in the inline comment in theCargo.toml
ofworkspacer
above (the 1st snippet above).So remove the
[lib]
section fromworkspacer/Carg.toml
as the question says in the inline comment, cd tosafe_app/
, runcargo test
. It will producesafe_app/Cargo.lock
andsafe_app/target/....
instead of in project dirworkspacer
.In-case anyone want to try out, here's the POC repository snapshot at the commit producing the problem.
The text was updated successfully, but these errors were encountered: