1 Star 0 Fork 0

jiangstack/sonic

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Cargo.toml 1.65 KB
一键复制 编辑 原始数据 按行查看 历史
Valerian Saliou 提交于 2020-10-14 11:44 . Bump RocksDB + regex
[package]
name = "sonic-server"
version = "1.3.0"
description = "Fast, lightweight and schema-less search backend."
readme = "README.md"
license = "MPL-2.0"
edition = "2018"
homepage = "https://github.com/valeriansaliou/sonic"
repository = "https://github.com/valeriansaliou/sonic.git"
keywords = ["search", "query", "server", "index"]
categories = ["database-implementations", "web-programming"]
authors = ["Valerian Saliou <[email protected]>", "Baptiste Jamin <[email protected]>"]
[badges]
travis-ci = { repository = "valeriansaliou/sonic", branch = "master" }
coveralls = { repository = "valeriansaliou/sonic", branch = "master", service = "github" }
[[bin]]
name = "sonic"
path = "src/main.rs"
doc = false
[dependencies]
log = "0.4"
toml = "0.5"
clap = { version = "2.33", default-features = false }
lazy_static = "1.4"
serde = "1.0"
serde_derive = "1.0"
rand = "0.7"
unicode-segmentation = "1.6"
radix = "0.6"
rocksdb = { version = "0.15", features = ["zstd"] }
fst = "0.3"
fst-levenshtein = "0.2"
fst-regex = "0.2"
regex-syntax = "0.6"
twox-hash = "1.5"
byteorder = "1.3"
hashbrown = "0.9"
linked_hash_set = "0.1"
whatlang = "0.10"
regex = "1.4"
[target.'cfg(unix)'.dependencies]
nix = "0.18"
jemallocator = { version = "0.3", optional = true }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["minwindef", "consoleapi"] }
[features]
default = ["alloc-jemalloc"]
alloc-jemalloc = ["jemallocator"]
benchmark = []
[profile.dev]
opt-level = 0
debug = true
debug-assertions = true
[profile.release]
opt-level = 3
lto = true
debug = false
debug-assertions = false
[profile.bench]
opt-level = 3
debug = false
debug-assertions = false
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jiangstack/sonic.git
[email protected]:jiangstack/sonic.git
jiangstack
sonic
sonic
master

搜索帮助