//! Tracker use crate::{authenticated::discovery::config::Bootstrapper, Ingress}; use commonware_cryptography::Signer; use commonware_runtime::Quota; use std::time::Duration; mod actor; mod directory; mod ingress; mod metadata; mod metrics; mod record; mod reservation; mod set; pub use actor::Actor; pub use ingress::{Message, Oracle}; pub use metadata::Metadata; pub use reservation::Reservation; #[derive(Clone, Debug)] pub struct Config { pub crypto: C, pub namespace: Vec, pub address: Ingress, pub bootstrappers: Vec>, pub allow_private_ips: bool, pub allow_dns: bool, pub synchrony_bound: Duration, pub tracked_peer_sets: usize, pub max_peer_set_size: u64, pub allowed_connection_rate_per_peer: Quota, pub peer_gossip_max_count: usize, pub dial_fail_limit: usize, }