Skip to content

Commit

Permalink
Prefix crate names with malachite-
Browse files Browse the repository at this point in the history
  • Loading branch information
romac committed Oct 19, 2023
1 parent 0a16726 commit 02692b9
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Code/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ resolver = "2"

members = [
"common",
"round-sm"
"round"
]
4 changes: 1 addition & 3 deletions Code/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
[package]
name = "common"
name = "malachite-common"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
4 changes: 2 additions & 2 deletions Code/round-sm/Cargo.toml → Code/round/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "round-sm"
name = "malachite-round"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
common = { version = "0.1.0", path = "../common" }
malachite-common = { version = "0.1.0", path = "../common" }
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Code/round-sm/src/lib.rs → Code/round/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pub use common::*;
pub use malachite_common::*;

pub mod events;
pub mod message;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 02692b9

Please sign in to comment.