Skip to content

Commit

Permalink
rust: disable release for internal crates
Browse files Browse the repository at this point in the history
  • Loading branch information
jedbrown committed Dec 24, 2022
1 parent dd8ab4d commit 13f28a1
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/rust/ex1-volume/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ edition = "2018"
clap = { version = "4.0.17", features = ["derive"] }
libceed = { path = "../../../rust/libceed" }
mesh = { path = "../mesh" }

[package.metadata.release]
release = false
3 changes: 3 additions & 0 deletions examples/rust/ex2-surface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ edition = "2018"
clap = { version = "4.0.17", features = ["derive"] }
libceed = { path = "../../../rust/libceed" }
mesh = { path = "../mesh" }

[package.metadata.release]
release = false
3 changes: 3 additions & 0 deletions examples/rust/ex3-vector-volume/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ edition = "2018"
clap = { version = "4.0.17", features = ["derive"] }
libceed = { path = "../../../rust/libceed" }
mesh = { path = "../mesh" }

[package.metadata.release]
release = false
3 changes: 3 additions & 0 deletions examples/rust/ex4-vector-surface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ edition = "2018"
clap = { version = "4.0.17", features = ["derive"] }
libceed = { path = "../../../rust/libceed" }
mesh = { path = "../mesh" }

[package.metadata.release]
release = false
3 changes: 3 additions & 0 deletions examples/rust/mesh/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ edition = "2018"

[dependencies]
libceed = { path = "../../../rust/libceed" }

[package.metadata.release]
release = false

0 comments on commit 13f28a1

Please sign in to comment.