14 个版本

0.1.20 2024 年 8 月 21 日
0.1.19 2024 年 8 月 17 日
0.1.12 2024 年 7 月 31 日

24 in #Markdown

Download history 233/week @ 2024-07-22 605/week @ 2024-07-29 79/week @ 2024-08-05 163/week @ 2024-08-12 175/week @ 2024-08-19

1,081 monthly downloads
3 个包中(直接使用 2 个)使用

MulanPSL-2.0

9KB
172 代码行

tzst

use std::{io, path::PathBuf};

use gxhash::gxhash128;
use static_init::constructor;
use tracing::info;

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

#[test]
fn main() -> io::Result<()> {
  let root_dir = env!("CARGO_MANIFEST_DIR");
  let root_dir: PathBuf = root_dir.into();
  let relative_paths = vec!["Cargo.toml", "src/lib.rs"];

  let mut w = tzst::W::new();

  w.add_path_li(&root_dir, relative_paths)?;
  w.add_bin("a", b"test")?;

  let compressed_data = w.end()?;
  let hash = gxhash128(&compressed_data, 0);
  info!("{}", hash);

  let t = tzst::r(&compressed_data)?;

  for i in t {
    info!("{:?}", i);
  }

  Ok(())
}

关于

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

关于

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

依赖项

~5–14MB
~175K SLoC