Dmitriy Pleshevskiy
54e82f78d7
BREAKING CHANGES: push, query and suggestion commands with optional variables now haven't option arguments in methods
34 lines
878 B
TOML
34 lines
878 B
TOML
[package]
|
|
name = "sonic-channel"
|
|
version = "0.2.0"
|
|
authors = ["Dmitriy Pleshevskiy <dmitriy@ideascup.me>"]
|
|
description = "Rust client for sonic search backend"
|
|
categories = ["api-bindings"]
|
|
keywords = ["sonic", "search", "client", "elasticsearch", "api"]
|
|
edition = "2018"
|
|
license = "MPL-2.0"
|
|
repository = "https://github.com/pleshevskiy/sonic-channel"
|
|
homepage = "https://github.com/pleshevskiy/sonic-channel"
|
|
documentation = "https://docs.rs/sonic-channel"
|
|
readme = "README.md"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
lazy_static = "1.4.0"
|
|
regex = { version = "1.3.4", optional = true }
|
|
|
|
[features]
|
|
default = ["search"]
|
|
|
|
ingest = ["regex"]
|
|
search = ["regex"]
|
|
control = []
|
|
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
# https://docs.rs/about
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|