-
-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathCargo.toml
More file actions
97 lines (92 loc) · 2.63 KB
/
Cargo.toml
File metadata and controls
97 lines (92 loc) · 2.63 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[package]
name = "parseable"
version = "0.3.0"
authors = ["Parseable Team <hi@parseable.io>"]
edition = "2021"
rust-version = "1.67"
categories = ["logging", "observability", "log analytics"]
[dependencies]
actix-web-httpauth = "0.8"
actix-web = { version = "4.3", features = ["rustls"] }
actix-cors = "0.6"
actix-files = "0.6"
actix-web-prometheus = { version = "0.1" }
prometheus = { version = "0.13", features = ["process"] }
anyhow = { version = "1.0", features = ["backtrace"] }
arrow-schema = { version = "31.0", features = ["serde"] }
async-trait = "0.1"
aws-sdk-s3 = "0.24"
aws-smithy-async = { version = "0.54", features = ["rt-tokio"] }
base64 = "0.21"
bytes = "1.4"
chrono = "0.4"
chrono-humanize = "0.2"
clap = { version = "4.1", default-features = false, features = [
"std",
"color",
"help",
"derive",
"env",
"cargo",
"error-context",
] }
crossterm = "0.26"
datafusion = "17"
object_store = { version = "0.5", features = ["aws"] }
derive_more = "0.99"
env_logger = "0.10"
futures = "0.3"
fs_extra = "1.3"
http = "0.2"
humantime-serde = "1.1"
lazy_static = "1.4"
log = "0.4"
num_cpus = "1.15"
md-5 = "0.10"
sysinfo = "0.28.4"
hostname = "0.3"
rand = "0.8"
relative-path = { version = "1.7", features = ["serde"] }
reqwest = { version = "0.11", default_features=false, features=["rustls", "json", "hyper-rustls", "tokio-rustls"]}
rustls = "0.20"
rustls-pemfile = "1.0"
semver = "1.0"
serde = { version = "1.0", features = ["rc"] }
serde_json = "1.0"
thiserror = "1"
thread-priority = "0.10"
tokio-stream = { version = "0.1", features = ["fs"] }
tokio = { version = "1.25", default-features = false, features = [
"sync",
"macros",
"fs",
] }
clokwerk = "0.4"
actix-web-static-files = "4.0"
static-files = "0.2"
ulid = { version = "1.0", features = ["serde"] }
hex = "0.4"
itertools = "0.10"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
xz2 = { version = "*", features=["static"] }
bzip2 = { version = "*", features=["static"] }
once_cell = "1.17.1"
pyroscope = { version = "0.5.3", optional = true }
pyroscope_pprofrs = { version = "0.2", optional = true }
uptime_lib = "0.2.2"
regex = "1.7.3"
[build-dependencies]
static-files = "0.2"
cargo_toml = "0.15"
ureq = "2.6"
sha1_smol = { version = "1.0", features = ["std"] }
vergen = { version = "7.5", features = ["build", "git", "cargo"] }
zip = { version = "0.6", default_features = false, features = ["deflate"] }
[dev-dependencies]
maplit = "1.0"
rstest = "0.16"
[package.metadata.parseable_ui]
assets-url = "https://github.com/parseablehq/console/releases/download/v0.0.9/build.zip"
assets-sha1 = "c81dd1806d335ecbf7bab628977455bec254f209"
[features]
debug = ["pyroscope", "pyroscope_pprofrs"]