scopeql 0.3.2

A command-line interface for ScopeDB
# Copyright 2025 ScopeDB, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

[package]
name = "scopeql"
version = "0.3.2"

categories = ["database"]
description = "A command-line interface for ScopeDB"
keywords = ["scopedb"]

edition.workspace = true
homepage.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true

[dependencies]
anstyle = { version = "1.0" }
anyhow = { version = "1.0.100" }
clap = { version = "4.5", features = ["cargo", "derive"] }
comfy-table = { version = "7.1.4", default-features = false }
const_format = { version = "0.2.34" }
csv = { version = "1.4" }
dirs = { version = "6.0" }
exn = { version = "0.3.0" }
fastrace = { version = "0.7", features = ["enable"] }
fastrace-reqwest = { version = "0.2" }
hex = { version = "0.4.3" }
indicatif = { version = "0.18" }
jiff = { version = "0.2", features = ["serde"] }
log = { version = "0.4.29" }
logforth = { version = "0.29.1", features = ["starter-log"] }
mea = { version = "0.6.3" }
memchr = { version = "2.7.6" }
nu-ansi-term = { version = "0.50" }
reedline = { version = "0.45.0" }
reqwest = { version = "0.12", default-features = false, features = [
  "json",
  "rustls-tls",
  "charset",
  "http2",
  "macos-system-configuration",
] }
scopeql-parser = { workspace = true, features = ["command"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["unbounded_depth"] }
shadow-rs = { version = "1.2.1", default-features = false }
tokio = { version = "1.47.1", features = ["full"] }
toml = { version = "0.9.3" }
toml_edit = { version = "0.24", features = ["serde"] }
uuid = { version = "1.20.0", features = ["v7", "serde"] }

[build-dependencies]
build-data = { version = "0.3.3" }
gix-discover = { version = "0.46.0" }
shadow-rs = { version = "1.2.1", default-features = false, features = [
  "build",
] }

[lints]
workspace = true

[package.metadata.release]
pre-release-commit-message = "chore: release v{{version}}"
sign-tag = true
tag-name = "v{{version}}"