14 releases

0.1.16 Aug 17, 2024
0.1.14 Aug 5, 2024
0.1.13 Jul 18, 2024
0.1.3 Jun 25, 2024

#36 in #mark-down

Download history 247/week @ 2024-06-23 768/week @ 2024-06-30 18/week @ 2024-07-07 483/week @ 2024-07-14 11/week @ 2024-07-21 144/week @ 2024-07-28 169/week @ 2024-08-04 147/week @ 2024-08-11 67/week @ 2024-08-18 21/week @ 2024-08-25 33/week @ 2024-09-01 13/week @ 2024-09-08

252 downloads per month
Used in 6 crates (3 directly)

MulanPSL-2.0

38KB
493 lines

mreq

use aok::{Result, OK};
use mreq::Mreq;
use static_init::constructor;
use tracing::info;

#[constructor(0)]
extern "C" fn init() {
  loginit::init()
}

#[tokio::test]
async fn test() -> Result<()> {
  let mut req = Mreq::new(
    [
      "httpstat.us",
      "jsd.onmicrosoft.cn",
      "cdn.jsdelivr.net",
      "cdn.jsdmirror.com",
    ],
    [],
  );
  let v = req.get("npm/i18md/.v").await?;
  let v = String::from_utf8_lossy(&v);
  info!("1 {}", v);
  let v = req.get("npm/i18md/.v").await?;
  let v = String::from_utf8_lossy(&v);
  info!("2 {}", v);
  // let v = req.get("npm/i18md/.v").await?;
  // let v = String::from_utf8_lossy(&v);
  // info!("{}", v);
  OK
}

About

This project is an open-source component of i18n.site ⋅ Internationalization Solution.

关于

本项目为 i18n.site ⋅ 国际化解决方案 的开源组件。

Dependencies

~5–18MB
~279K SLoC