openobserve/Cargo.toml

173 lines
4.9 KiB
TOML
Raw Normal View History

2023-02-02 11:33:11 +08:00
[package]
description = "OpenObserve 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-06-02 20:05:12 +08:00
homepage = "https://openobserve.ai/"
keywords = [
"search",
"log",
"metrics",
"traces",
"analytics",
"observability",
"open source",
"open-source",
"opensource",
]
license = "Apache-2.0"
name = "openobserve"
repository = "https://github.com/openobserve/openobserve/"
version = "0.5.2"
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]
2023-02-06 22:07:01 +08:00
mimalloc = ["dep:mimalloc"]
2023-05-26 11:19:14 +08:00
jemalloc = ["dep:tikv-jemallocator"]
profiling = ["dep:pyroscope", "dep:pyroscope_pprofrs"]
2023-02-02 11:33:11 +08:00
[profile.release]
debug = false
strip = true
[profile.release-prod]
inherits = "release"
codegen-units = 1
lto = "thin"
[profile.release-profiling]
inherits = "release"
debug = true
strip = false
codegen-units = 4
2023-02-02 11:33:11 +08:00
[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"] }
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"
aws-config = "0.55.3"
aws-sdk-dynamodb = "0.28.0"
2023-04-13 17:59:49 +08:00
base64 = "0.21"
blake3 = { version = "1.4", features = ["rayon"] }
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",
] }
cloudevents-sdk = { version = "0.7.0", features = ["actix"] }
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"] }
2023-08-02 22:29:26 +08:00
datafusion = { version = "28", features = ["simd"] }
arrow = { version = "43", features = ["simd", "ipc_compression"] }
arrow-schema = { version = "43", features = ["serde"] }
parquet = { version = "43", features = ["arrow", "async"] }
2023-04-13 17:59:49 +08:00
dotenv_config = "0.1"
dotenvy = "0.15"
env_logger = "0.10"
etcd-client = { version = "0.11", features = ["tls"] }
flate2 = { version = "1.0", features = ["zlib"] }
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"
2023-08-02 22:29:26 +08:00
indexmap = { version = "2.0", features = ["serde"] }
ipnetwork = "0.20"
itertools = "0.11"
2023-04-13 17:59:49 +08:00
lazy_static = "1.4"
log = "0.4"
lru = "0.10"
2023-04-13 17:59:49 +08:00
memchr = "2.5"
mimalloc = { version = "0.1", default-features = false, optional = true }
object_store = { version = "0.6", features = [
2023-04-15 11:45:12 +08:00
"aws",
"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
prometheus = "0.13"
promql-parser = "0.2"
2023-04-13 17:59:49 +08:00
prost = "0.11"
pyroscope = { version = "0.5.6", optional = true }
pyroscope_pprofrs = { version = "0.2.5", optional = true }
2023-04-13 17:59:49 +08:00
rand = "0.8"
rayon = "1.7.0"
2023-04-13 17:59:49 +08:00
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"
segment = "0.2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
simd-json = "0.10.3"
2023-04-13 17:59:49 +08:00
sled = "0.34"
snap = "1"
2023-08-02 22:29:26 +08:00
sqlparser = { version = "0.35", 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"
2023-05-26 11:19:14 +08:00
tikv-jemallocator = { version = "0.5", optional = true }
2023-08-02 22:29:26 +08:00
tempfile = "3"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
tonic = { version = "0.8", features = ["prost", "gzip"] }
2023-08-02 22:29:26 +08:00
tracing = { version = "0.1.37", features = ["attributes"] }
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"] }
vector-enrichment = { package = "enrichment", git = "https://github.com/zinclabs/vector", rev = "c110977d421bb7826738faee7d435de783cef561" }
vrl = { git = "https://github.com/zinclabs/vrl", rev = "2bbe6728fc0a9d0c20b6ee8634346bdbf28f78d8", features = [
"value",
] }
walkdir = "2"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
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-08-02 22:29:26 +08:00
datafusion-expr = "28"
expect-test = "1.4"
float-cmp = "0.9"