openobserve/Cargo.toml

163 lines
4.6 KiB
TOML
Raw Normal View History

2023-02-02 11:33:11 +08:00
[package]
2023-03-16 19:14:07 +08:00
description = "ZincObserve is an observability platform that allows you to capture, search, and analyze your logs, metrics, and traces."
2023-02-02 11:33:11 +08:00
edition = "2021"
2023-02-03 20:08:46 +08:00
homepage = "https://zinc.dev/"
keywords = [
"search",
"log",
"metrics",
"traces",
"analytics",
"observability",
"open source",
"open-source",
"opensource",
]
license = "Apache-2.0"
name = "zincobserve"
repository = "https://github.com/zinclabs/zincobserve/"
version = "0.1.0"
publish = false
2023-02-02 11:33:11 +08:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["zo_functions"]
2023-02-06 22:07:01 +08:00
mimalloc = ["dep:mimalloc"]
zo_functions = ["dep:mlua"]
2023-02-02 11:33:11 +08:00
[profile.release]
debug = false
debug-assertions = false
overflow-checks = false
strip = true
[dependencies]
2023-04-13 17:59:49 +08:00
actix-cors = "0.6"
2023-05-20 16:54:46 +08:00
actix-multipart = "0.6.0"
actix-web = "4.3"
2023-02-02 11:33:11 +08:00
actix-web-httpauth = "0.8"
actix-web-opentelemetry = { version = "0.13", features = ["metrics"] }
2023-04-13 17:59:49 +08:00
actix-web-prometheus = { version = "0.1", features = ["process"] }
actix-web-rust-embed-responder = { version = "2.2", default-features = false, features = [
"support-rust-embed-for-web",
"base64",
] }
ahash = { version = "0.8", features = ["serde"] }
anyhow = "1.0"
2023-04-13 17:59:49 +08:00
argon2 = { version = "0.4", features = ["alloc", "password-hash"] }
arrow = { version = "36", features = ["simd", "ipc_compression"] }
arrow-schema = { version = "36", features = ["serde"] }
async-trait = "0.1"
async_once = "0.2"
2023-05-10 23:18:23 +08:00
async-recursion = "1.0"
2023-04-13 17:59:49 +08:00
awc = "3.1"
base64 = "0.21"
blake3 = "1.3"
bytes = "1.4"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
2023-04-13 17:59:49 +08:00
clap = { version = "4.1", default-features = false, features = [
"std",
"help",
"usage",
"suggestions",
"cargo",
] }
2023-05-20 16:54:46 +08:00
csv = "1.2.1"
2023-04-13 17:59:49 +08:00
dashmap = { version = "5.4", features = ["serde"] }
datafusion = { version = "22", features = ["simd"] }
datafusion-common = "22"
dotenv_config = "0.1"
dotenvy = "0.15"
env_logger = "0.10"
2023-04-13 17:59:49 +08:00
etcd-client = { version = "0.10", features = ["tls"] }
flate2 = { version = "1.0", features = ["zlib"] }
2023-04-13 17:59:49 +08:00
flatten-json-object = "0.6"
futures = "0.3"
2023-04-13 17:59:49 +08:00
get_if_addrs = "0.5"
glob = "0.3"
hex = "0.4"
2023-04-13 17:59:49 +08:00
http-auth-basic = "0.3"
indexmap = { version = "1.9", features = ["serde"] }
2023-05-11 08:48:24 +08:00
ipnetwork = "0.20.0"
2023-04-13 17:59:49 +08:00
lazy_static = "1.4"
log = "0.4"
lru = "0.8"
memchr = "2.5"
mimalloc = { version = "0.1", default-features = false, optional = true }
2023-04-21 23:00:00 +08:00
mlua = { version = "0.8.4", features = [
"send",
"luajit52",
"vendored",
"serialize",
], optional = true }
2023-04-15 11:45:12 +08:00
object_store = { version = "0.5", features = [
"aws",
"aws_profile",
"azure",
"gcp",
] }
once_cell = "1.17"
opentelemetry = { version = "0.18", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.11", features = [
"http-proto",
"serialize",
"reqwest-client",
] }
opentelemetry-proto = { version = "0.1", features = [
"gen-tonic",
"traces",
"with-serde",
"build-server",
] }
parking_lot = "0.12"
2023-04-13 17:59:49 +08:00
parquet = { version = "36", features = ["arrow", "async"] }
prometheus = "0.13"
promql-parser = "0.1"
2023-04-13 17:59:49 +08:00
prost = "0.11"
rand = "0.8"
regex = "1.7"
regex-syntax = "0.6"
reqwest = { version = "0.11", default-features = false, features = [
"rustls-tls",
] }
2023-04-13 17:59:49 +08:00
rs-snowflake = "0.6"
rust-embed-for-web = "11.1"
2023-05-10 23:18:23 +08:00
rustc-hash = "1.1.0"
2023-04-13 17:59:49 +08:00
segment = "0.2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2023-04-13 17:59:49 +08:00
simd-json = "0.7"
sled = "0.34"
snap = "1"
sqlparser = { version = "0.32", features = ["serde"] }
2023-05-10 23:18:23 +08:00
strum = { version = "0.24", features = ["derive"] }
2023-04-13 17:59:49 +08:00
sys-info = "0.9"
2023-05-11 08:48:24 +08:00
syslog_loose = "0.18.0"
thiserror = "1.0"
2023-04-13 17:59:49 +08:00
time = "0.3"
tokio = { version = "1", features = ["full"] }
tonic = { version = "0.8", features = ["prost", "gzip"] }
tracing = "0.1"
tracing-opentelemetry = "0.18"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = "2.2"
utoipa = { version = "3", features = ["actix_extras", "openapi_extensions"] }
utoipa-swagger-ui = { version = "3", features = ["actix-web"] }
2023-04-13 17:59:49 +08:00
uuid = { version = "1.2", features = ["v4", "fast-rng", "macro-diagnostics"] }
2023-05-20 16:54:46 +08:00
vrl = { git = "https://github.com/zinclabs/vrl", rev = "113005bcee6cd7b5ea0a53a7db2fc45ba4bc4125"}
vrl-value = { package = "value", git = "https://github.com/zinclabs/vrl", rev = "113005bcee6cd7b5ea0a53a7db2fc45ba4bc4125" }
vrl-stdlib = { package = "vrl-stdlib", git = "https://github.com/zinclabs/vrl", rev = "113005bcee6cd7b5ea0a53a7db2fc45ba4bc4125" }
vector-enrichment = { package = "enrichment", git = "https://github.com/zinclabs/vector", rev = "ce014974f814d05779b92e42027e5952d19848af"}
walkdir = "2"
2023-04-13 17:59:49 +08:00
zstd = "0.12"
2023-02-02 11:33:11 +08:00
[build-dependencies]
chrono = { version = "0.4", default-features = false, features = ["clock"] }
prost-build = "0.11"
tonic-build = { version = "0.8", features = ["prost"] }
2023-03-29 20:56:30 +08:00
[dev-dependencies]
2023-04-13 17:59:49 +08:00
datafusion-expr = "22"
expect-test = "1.4"
float-cmp = "0.9"