btpeer 0.10.0

Simple CLI tool and library to get peers from TCP/HTTP and UDP BitTorrent trackers
Documentation
1
2
3
4
5
6
7
8
9
10
#[derive(Debug)]
pub struct I2p {
    pub b32: String,
}

impl std::fmt::Display for I2p {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{}", self.b32)
    }
}