-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
41 lines (38 loc) · 1.07 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
41
[package]
name = "streamstore-cli"
description = "CLI for S2"
version = "0.8.4"
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"] }
bytes = "1.9.0"
clap = { version = "4.5.27", features = ["derive"] }
color-print = "0.3.7"
colored = "3.0.0"
config = "0.15.6"
dirs = "6.0.0"
futures = "0.3.31"
http = "1.2.0"
humantime = "2.1.0"
indicatif = "0.17.9"
miette = { version = "7.4.0", features = ["fancy"] }
rand = "0.8.5"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.137"
streamstore = "0.8.1"
thiserror = "2.0.11"
tokio = { version = "1.43.0", features = ["full"] }
tokio-stream = { version = "0.1.17", features = ["io-util"] }
toml = "0.8.19"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
[profile.release]
lto = true