-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
40 lines (37 loc) · 1.05 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
38
39
40
[package]
name = "streamstore-cli"
description = "CLI for S2"
version = "0.7.0"
edition = "2021"
license = "Apache-2.0"
keywords = ["streamstore", "s2", "log", "stream", "s3"]
repository = "https://github.com/s2-streamstore/streamstore-cli"
homepage = "https://github.com/s2-streamstore/streamstore-cli"
[[bin]]
name = "s2"
path = "src/main.rs"
[dependencies]
async-stream = "0.3.6"
base64ct = { version = "1.6.0", features = ["alloc"] }
clap = { version = "4.5.20", features = ["derive"] }
color-print = "0.3.6"
colored = "2.1.0"
config = "0.14.1"
dirs = "5.0.1"
futures = "0.3.31"
http = "1.2.0"
humantime = "2.1.0"
indicatif = "0.17.9"
miette = { version = "7.2.0", features = ["fancy"] }
rand = "0.8.5"
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
streamstore = "0.5.1"
thiserror = "2.0.6"
tokio = { version = "1.41.1", features = ["full"] }
tokio-stream = { version = "0.1.16", features = ["io-util"] }
toml = "0.8.19"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
[profile.release]
lto = true