-
Notifications
You must be signed in to change notification settings - Fork 351
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move cosmwasm into packages/std #167
Conversation
In recent versions of cargo, it is now called package
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, if the CI says it works, then I am happu
Cargo.toml
Outdated
[features] | ||
backtraces = ["snafu/backtraces"] | ||
members = [ | ||
"packages/std", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you can use packages/*
which will auto-add any new package
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
jap, better
@@ -2,8 +2,8 @@ | |||
|
|||
[![CircleCI](https://circleci.com/gh/CosmWasm/cosmwasm/tree/master.svg?style=shield)](https://circleci.com/gh/CosmWasm/cosmwasm/tree/master) | |||
[![Docs](https://docs.rs/cosmwasm/badge.svg)](https://docs.rs/cosmwasm) | |||
[![crates.io](https://img.shields.io/crates/v/cosmwasm.svg)](https://crates.io/crates/cosmwasm) | |||
|
|||
[![cosmwasm on crates.io](https://img.shields.io/crates/v/cosmwasm.svg)](https://crates.io/crates/cosmwasm) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
First part of #165
Let's see what CI says.
I'm also thinking about renaming
./lib
to./packages
or./projects
, but I'm a bit unsure what the best name for workspace members is (members, package and project are used in https://doc.rust-lang.org/book/ch14-03-cargo-workspaces.html)