A library for writing host-specific, single-binary configuration management and deployment tools
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
413 B

8 years ago
  1. // rustfmt
  2. #![deny(fat_ptr_transmutes,
  3. trivial_casts, trivial_numeric_casts, unsafe_code,
  4. unstable_features, unused_extern_crates,
  5. unused_import_braces, unused_qualifications,
  6. unused_results, variant_size_differences
  7. )]
  8. /*
  9. #![warn(missing_docs,
  10. missing_copy_implementations,
  11. missing_debug_implementations
  12. )]
  13. */
  14. #![allow(box_pointers)]
  15. pub mod command_runner;
  16. pub mod loggers;
  17. pub mod symbols;
  18. pub mod schema;