50个版本

0.11.2 2023年6月24日
0.11.1 2022年8月8日
0.11.0 2022年7月15日
0.10.0 2021年8月10日
0.7.0 2015年3月31日

#2109数据结构

Download history 343767/week @ 2024-03-14 358135/week @ 2024-03-21 355329/week @ 2024-03-28 338381/week @ 2024-04-04 353852/week @ 2024-04-11 357412/week @ 2024-04-18 358529/week @ 2024-04-25 381063/week @ 2024-05-02 364878/week @ 2024-05-09 395108/week @ 2024-05-16 387377/week @ 2024-05-23 476942/week @ 2024-05-30 479375/week @ 2024-06-06 494894/week @ 2024-06-13 523196/week @ 2024-06-20 447134/week @ 2024-06-27

2,041,063 每月下载量
用于 2,077 个crate(直接使用15个)

MIT 许可证

45KB
698

Rust-PHF

CI Latest Version

文档

Rust-PHF是一个库,它使用完美哈希函数在编译时生成高效的查找表。

它目前使用CHD算法,可以大约在0.4秒内生成包含100,000个条目的映射。

MSRV(最低支持的Rust版本)是Rust 1.60。

使用方法

PHF数据结构可以通过phf_macros crate中的过程宏或由phf_codegen crate支持的代码生成来构建。

为了使用libcore而不是libstd编译phf crate,并使它能够在libstd无法工作的环境中使用,将依赖项的default-features = false 设置为false

[dependencies]
# to use `phf` in `no_std` environments
phf = { version = "0.11", default-features = false }

phf_macros

use phf::phf_map;

#[derive(Clone)]
pub enum Keyword {
    Loop,
    Continue,
    Break,
    Fn,
    Extern,
}

static KEYWORDS: phf::Map<&'static str, Keyword> = phf_map! {
    "loop" => Keyword::Loop,
    "continue" => Keyword::Continue,
    "break" => Keyword::Break,
    "fn" => Keyword::Fn,
    "extern" => Keyword::Extern,
};

pub fn parse_keyword(keyword: &str) -> Option<Keyword> {
    KEYWORDS.get(keyword).cloned()
}
[dependencies]
phf = { version = "0.11", features = ["macros"] }

注意

目前,宏语法有一些限制,可能无法按预期工作。例如,请参阅#183#196

phf_codegen

要在build.rs中使用phf_codegen,您必须将依赖项添加到[build-dependencies]

[build-dependencies]
phf = { version = "0.11.1", default-features = false }
phf_codegen = "0.11.1"

然后在build.rs上放置代码

use std::env;
use std::fs::File;
use std::io::{BufWriter, Write};
use std::path::Path;

fn main() {
    let path = Path::new(&env::var("OUT_DIR").unwrap()).join("codegen.rs");
    let mut file = BufWriter::new(File::create(&path).unwrap());

    write!(
        &mut file,
        "static KEYWORDS: phf::Map<&'static str, Keyword> = {}",
        phf_codegen::Map::new()
            .entry("loop", "Keyword::Loop")
            .entry("continue", "Keyword::Continue")
            .entry("break", "Keyword::Break")
            .entry("fn", "Keyword::Fn")
            .entry("extern", "Keyword::Extern")
            .build()
    )
    .unwrap();
    write!(&mut file, ";\n").unwrap();
}

并在lib.rs上

#[derive(Clone)]
enum Keyword {
    Loop,
    Continue,
    Break,
    Fn,
    Extern,
}

include!(concat!(env!("OUT_DIR"), "/codegen.rs"));

pub fn parse_keyword(keyword: &str) -> Option<Keyword> {
    KEYWORDS.get(keyword).cloned()
}

依赖项

~0.6–1MB
~24K SLoC