Skip to content

Commit bb9481d

Browse files
committed
Merge remote-tracking branch 'origin/master' into precision
2 parents 92a7eac + ed06c0d commit bb9481d

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[package]
22
name = "measurements"
33
version = "0.4.0"
4-
authors = ["James O'Cull <[email protected]>", "Jonathan Pallant <[email protected]"]
4+
authors = ["James O'Cull <[email protected]>",
5+
"Jonathan Pallant <[email protected]>",
6+
"Hannah McLaughlin <[email protected]>"]
57
documentation = "https://docs.rs/crate/measurements"
68
repository = "https://github.com/jocull/rust-measurements"
79
keywords = ["measurements", "lengths", "weights", "temperatures", "volumes"]

src/lib.rs

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,19 @@
22
mod measurement;
33
pub use measurement::Measurement;
44

5-
#[allow(dead_code)]
6-
mod length;
5+
pub mod length;
76
pub use length::Length;
87

9-
#[allow(dead_code)]
10-
mod temperature;
8+
pub mod temperature;
119
pub use temperature::{Temperature, TemperatureDelta};
1210

13-
#[allow(dead_code)]
14-
mod weight;
11+
pub mod weight;
1512
pub use weight::Weight;
1613

17-
#[allow(dead_code)]
18-
mod volume;
14+
pub mod volume;
1915
pub use volume::Volume;
2016

21-
#[allow(dead_code)]
22-
mod pressure;
17+
pub mod pressure;
2318
pub use pressure::Pressure;
2419

2520
// Include when running tests, but don't export them

0 commit comments

Comments
 (0)