Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions DIRECTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
* [Speed](https://github.com/TheAlgorithms/Rust/blob/master/src/conversions/speed.rs)
* [Time Units](https://github.com/TheAlgorithms/Rust/blob/master/src/conversions/time_units.rs)
* [Temperature](https://github.com/TheAlgorithms/Rust/blob/master/src/conversions/temperature.rs)
* [Volume](https://github.com/TheAlgorithms/Rust/blob/master/src/conversions/volume.rs)
* [Weight](https://github.com/TheAlgorithms/Rust/blob/master/src/conversions/weight.rs)
* Data Structures
* [AVL Tree](https://github.com/TheAlgorithms/Rust/blob/master/src/data_structures/avl_tree.rs)
Expand Down
4 changes: 3 additions & 1 deletion src/conversions/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ mod roman_numerals;
mod speed;
mod temperature;
mod time_units;
mod volume;
mod weight;

pub use self::binary_to_decimal::binary_to_decimal;
Expand Down Expand Up @@ -48,4 +49,5 @@ pub use self::roman_numerals::{int_to_roman, roman_to_int};
pub use self::speed::{convert_speed, SpeedUnit};
pub use self::temperature::{convert_temperature, TemperatureUnit};
pub use self::time_units::convert_time;
pub use self::weight::{convert_weight, WeightUnit};
pub use self::volume::{convert_volume, VolumeUnit};
pub use self::weight::{convert_weight, WeightUnit};
Loading
Loading