8个版本 (4个重大更新)
0.4.0 | 2023年1月30日 |
---|---|
0.3.0 | 2022年5月1日 |
0.2.0 | 2022年4月16日 |
0.1.3 | 2022年4月15日 |
0.0.0 | 2022年4月6日 |
#1 in #ip2location
每月下载24次
110KB
2.5K SLoC
ip2location-ip2location
示例
#[cfg(feature = "tokio_fs")]
{
use std::{net::Ipv4Addr};
use ip2location_ip2location::bin_format::{Database, TokioFile};
fn main() -> Result<(), Box<dyn std::error::Error>> {
let runtime = tokio::runtime::Runtime::new().unwrap();
runtime.block_on(async move {
let db = Database::<TokioFile>::new("/path/IP2LOCATION-LITE-DB11.BIN", 2).await?;
if let Some(record) = db.lookup_ipv4(Ipv4Addr::new(8, 8, 8, 8), None).await? {
assert_eq!(record.country_code.to_string(), "US");
}
Ok(())
})
}
}
依赖关系
~5–7MB
~118K SLoC