lib.rs 301 B

1234567891011121314
  1. // Copyright (c) 2016-2018, The Tor Project, Inc. */
  2. // See LICENSE for licensing information */
  3. //! Small module to announce Rust support during startup for demonstration
  4. //! purposes.
  5. extern crate libc;
  6. extern crate tor_allocate;
  7. #[macro_use]
  8. extern crate tor_log;
  9. pub mod ffi;
  10. pub mod strings;