Skip to content

Commit e72ff88

Browse files
authored
Merge pull request #691 from integer32llc/publishable
Make crates.io publishable on crates.io
2 parents 67dbb11 + d83a2b3 commit e72ff88

File tree

4 files changed

+69
-61
lines changed

4 files changed

+69
-61
lines changed

Cargo.lock

+55-55
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
name = "cargo-registry"
33
authors = ["Alex Crichton <[email protected]>"]
44
version = "0.1.0"
5+
license = "MIT/Apache-2.0"
6+
repository = "https://github.com/rust-lang/crates.io"
7+
8+
[workspace]
59

610
[profile.release]
711
opt-level = 2
@@ -15,8 +19,8 @@ name = "all"
1519
path = "src/tests/all.rs"
1620

1721
[dependencies]
18-
s3 = { path = "src/s3" }
19-
migrate = { path = "src/migrate" }
22+
cargo-registry-s3 = { path = "src/s3", version = "0.1.0" }
23+
cargo-registry-migrate = { path = "src/migrate", version = "0.1.0" }
2024
rand = "0.3"
2125
time = "0.1"
2226
git2 = "0.6.4"

src/migrate/Cargo.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[project]
2-
name = "migrate"
2+
name = "cargo-registry-migrate"
33
authors = ["Alex Crichton <[email protected]>"]
44
version = "0.1.0"
5+
license = "MIT/Apache-2.0"
6+
repository = "https://github.com/rust-lang/crates.io"
57

68
[lib]
79
name = "migrate"

src/s3/Cargo.toml

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
[package]
22

3-
name = "s3"
4-
version = "0.0.1"
5-
authors = []
3+
name = "cargo-registry-s3"
4+
version = "0.1.0"
5+
authors = ["Alex Crichton <[email protected]>"]
6+
license = "MIT/Apache-2.0"
7+
repository = "https://github.com/rust-lang/crates.io"
68

79
[lib]
810

0 commit comments

Comments
 (0)