ids_service 2.1.3

Library that allows to generate unique Ids.
Documentation
/*
 * This file is part of ids_service
 *
 * ids_service is free software: you can redistribute it and/or modify
 * it under the terms of the MIT License.
 *
 * ids_service is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * MIT License for more details.
 *
 * You should have received a copy of the MIT License
 * along with ids_service.  If not, see <https://opensource.org/licenses/MIT>
 */

mod tests {
    /*
    #[test]
    fn test_get_new_id() {
        assert!(!get_new_id().is_empty(),"Result should not be empty");
    }

    #[bench]
    fn bench_get_new_id(b: &mut Bencher) {
        b.iter(|| get_new_id())
    }
    */
}