├── .gitignore ├── src └── lib.rs ├── .idea ├── vcs.xml ├── .gitignore ├── modules.xml ├── sexually_transmitted_disease.iml └── inspectionProfiles │ └── Project_Default.xml ├── Cargo.toml ├── README.md └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- 1 | #![doc = include_str!("../README.md")] 2 | pub use std::*; 3 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "sexually_transmitted_disease" 3 | version = "1.1.1" 4 | edition = "2021" 5 | description = "Renames std to sexually_transmitted_disease" 6 | license = "MIT" 7 | repository = "https://github.com/MakotoE/sexually_transmitted_disease" 8 | keywords = ["std"] 9 | readme = "README.md" 10 | documentation = "https://docs.rs/sexually_transmitted_disease" 11 | 12 | [dependencies] 13 | -------------------------------------------------------------------------------- /.idea/sexually_transmitted_disease.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Latest version](https://img.shields.io/crates/v/sexually_transmitted_disease.svg)](https://crates.io/crates/sexually_transmitted_disease) 2 | 3 | When you add this crate as a dependency, you can refer to `std` modules as `sexually_transmitted_disease`. 4 | 5 | For example: 6 | ```rust 7 | fn main() { 8 | // Disease vector 9 | let diseases: sexually_transmitted_disease::vec::Vec<&str> = 10 | ["HIV/AIDS", "HPV", "herpes", "chlamydia", "hepatitis"].into(); 11 | 12 | let (sender, receiver) = sexually_transmitted_disease::sync::mpsc::channel(); 13 | for disease in diseases { 14 | sender.send(disease); 15 | } 16 | 17 | println!("{}", receiver.recv().unwrap()); // HIV/AIDS 18 | } 19 | 20 | ``` 21 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Makoto 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | --------------------------------------------------------------------------------