Skip to content

Commit 8ffcaf6

Browse files
committed
cargo: convert from a crate to a workspace
1 parent 2966944 commit 8ffcaf6

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

Cargo.toml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
[package]
2-
name = "gitcore"
3-
version = "0.1.0"
4-
edition = "2018"
5-
rust-version = "1.49.0"
6-
7-
[lib]
8-
crate-type = ["staticlib"]
9-
10-
[dependencies]
1+
[workspace]
2+
members = [
3+
"rust/gitcore",
4+
]
5+
resolver = "2"

rust/gitcore/Cargo.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "gitcore"
3+
version = "0.1.0"
4+
edition = "2018"
5+
rust-version = "1.49.0"
6+
7+
[lib]
8+
crate-type = ["staticlib"]
9+
10+
[dependencies]
File renamed without changes.

0 commit comments

Comments
 (0)