Skip to content

Commit 7116081

Browse files
committed
renamed package
1 parent 36aa39d commit 7116081

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
2-
name = "hdf5_nuc_data_reader"
2+
name = "hdf5_nuclear_data_reader"
33
version = "0.1.0"
44
edition = "2021"
55
authors = ["Jonathan Shimwell <[email protected]>"]
66
description = "A package for reading nuclear data from HDF5 files in the OpenMC format"
77
license = "MIT"
8-
repository = "https://github.com/fusion-energy/hdf5_nuc_data_reader"
9-
documentation = "https://github.com/fusion-energy/hdf5_nuc_data_reader"
10-
homepage = "https://github.com/fusion-energy/hdf5_nuc_data_reader"
8+
repository = "https://github.com/fusion-energy/hdf5_nuclear_data_reader"
9+
documentation = "https://github.com/fusion-energy/hdf5_nuclear_data_reader"
10+
homepage = "https://github.com/fusion-energy/hdf5_nuclear_data_reader"
1111
keywords = ["h5", "cross-section", "hdf5", "openmc", "nuclear", "data"]
1212
crate-type = ["staticlib"]
1313

@@ -16,5 +16,5 @@ hdf5-sys = { version = "0.8.1", features = ["static"] }
1616
hdf5 = "0.8.1"
1717

1818
[lib]
19-
name = "hdf5_nuc_data_reader"
19+
name = "hdf5_nuclear_data_reader"
2020
path = "src/lib.rs"

example_use/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
hdf5_nuc_data_reader = { path = "../" }
7+
hdf5_nuclear_data_reader = { path = "../" }

example_use/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use hdf5_nuc_data_reader::{read_hdf5};
1+
use hdf5_nuclear_data_reader::{read_hdf5};
22

33
fn main() {
44
// Define the filename

0 commit comments

Comments
 (0)