-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (32 loc) · 1.4 KB
/
Cargo.toml
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
28
29
30
31
32
33
34
35
36
37
[package]
name = "elastiql"
version = "0.5.0"
description = "An opinionated Elasticsearch query language for Rust."
authors = ["William Myers <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/voxjar/elastiql"
keywords = ["elasticsearch", "graphql"]
edition = "2018"
[features]
default = ["builder"]
graphql = ["async-graphql"]
builder = ["typed-builder"]
[dependencies]
async-graphql = { version = "2.9.9", optional = true }
base64 = "0.13"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
typed-builder = { version = "0.9", optional = true }
[dev-dependencies]
elasticsearch = "7.12.1-alpha.1"
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "macros"] }
[package.metadata.release]
no-dev-version = true
pre-release-commit-message = "chore: release v{{version}}"
tag-message = "{{crate_name}} v{{version}}"
# IMPORTANT: remember to update the changelog before releasing
pre-release-replacements = [
{ file = "CHANGELOG.md", search = '## \[Unreleased\].*', replace = "### [v{{version}}](https://github.com/voxjar/elastiql/compare/v{{prev_version}}...v{{version}}) ({{date}})", min = 0, prerelease = true },
{ file = "CHANGELOG.md", search = '#{2,4} Fixes', replace = "#### Fixes", min = 0, prerelease = true },
{ file = "CHANGELOG.md", search = '#{2,4} Features', replace = "#### Features", min = 0, prerelease = true },
]