libtor_src/
lib.rs

1use std::path::{Path, PathBuf};
2
3pub fn get_libevent_dir() -> PathBuf {
4    Path::new(env!("LIBEVENT_SRC")).into()
5}
6
7pub fn get_tor_dir() -> PathBuf {
8    Path::new(env!("TOR_SRC")).into()
9}