Skip to content

Commit 87039fd

Browse files
committed
Inherit some keys from workspace
1 parent 3b7d38a commit 87039fd

4 files changed

Lines changed: 19 additions & 9 deletions

File tree

Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,18 @@ members = [
77
"pysplashsurf",
88
]
99

10+
# Exclude the python bindings to avoid building it by default with cargo run/build
1011
default-members = [
1112
"splashsurf_lib",
1213
"splashsurf"
1314
]
1415

16+
[workspace.package]
17+
authors = ["Fabian Löschner <fabian.loeschner@rwth-aachen.de>"]
18+
license = "MIT"
19+
homepage = "https://splashsurf.physics-simulation.org"
20+
repository = "https://github.com/InteractiveComputerGraphics/splashsurf"
21+
1522
[profile.release]
1623
lto = true
1724
codegen-units = 1

pysplashsurf/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ name = "pysplashsurf"
33
version = "0.11.0"
44
edition = "2018"
55

6-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
6+
authors.workspace = true
7+
license.workspace = true
8+
homepage.workspace = true
9+
repository.workspace = true
710

811
[dependencies]
912
pyo3 = {version = "0.25.0", features = ["anyhow"]}

splashsurf/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "splashsurf"
33
version = "0.11.0"
4-
authors = ["Fabian Löschner <loeschner@cs.rwth-aachen.de>"]
5-
license = "MIT"
64
description = "Command-line tool for surface reconstruction of SPH particle data"
75
keywords = ["sph", "particle", "surface", "reconstruction", "marching-cubes"]
86
categories = ["command-line-utilities", "graphics", "science", "simulation", "visualization"]
97
readme = "README.md"
108
edition = "2024"
119

12-
homepage = "https://splashsurf.physics-simulation.org"
13-
repository = "https://github.com/InteractiveComputerGraphics/splashsurf"
10+
authors.workspace = true
11+
license.workspace = true
12+
homepage.workspace = true
13+
repository.workspace = true
1414

1515
[dependencies]
1616
splashsurf_lib = { path = "../splashsurf_lib", version = "0.11.0", features = ["vtk_extras", "profiling", "io"] }

splashsurf_lib/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[package]
22
name = "splashsurf_lib"
33
version = "0.11.0"
4-
authors = ["Fabian Löschner <loeschner@cs.rwth-aachen.de>"]
5-
license = "MIT"
64
description = "Library for surface reconstruction of SPH particle data"
75
keywords = ["sph", "particle", "surface", "reconstruction", "marching-cubes"]
86
categories = ["graphics", "science", "simulation", "visualization", "rendering"]
97
readme = "README.md"
108
edition = "2024"
119

12-
homepage = "https://splashsurf.physics-simulation.org"
13-
repository = "https://github.com/InteractiveComputerGraphics/splashsurf"
1410
documentation = "https://docs.rs/splashsurf_lib"
11+
authors.workspace = true
12+
license.workspace = true
13+
homepage.workspace = true
14+
repository.workspace = true
1515

1616
[package.metadata.docs.rs]
1717
# RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --all-features --no-deps --open

0 commit comments

Comments
 (0)