forked from ashvardanian/StringZilla
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 759 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "stringzilla"
version = "3.8.4"
authors = ["Ash Vardanian <1983160+ashvardanian@users.noreply.github.com>"]
description = "Faster SIMD-accelerated string search, sorting, fingerprints, and edit distances"
edition = "2021"
license = "Apache-2.0"
publish = true
repository = "https://github.com/ashvardanian/stringzilla"
documentation = "https://docs.rs/stringzilla"
homepage = "https://ashvardanian.com/posts/stringzilla/"
keywords = ["simd", "search", "retrieval", "hash", "sort"]
categories = [
"text-processing",
"hardware-support",
"no-std",
"wasm",
"external-ffi-bindings",
]
include = ["/rust/**", "/c/**", "/include/**", "/build.rs"]
[lib]
name = "stringzilla"
path = "rust/lib.rs"
[build-dependencies]
cc = "1.0"