-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 710 Bytes
/
Cargo.toml
File metadata and controls
24 lines (22 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "subgraph-status"
version = "0.1.9"
edition = "2021"
authors = ["Shiyas <shiyasmohd.official@gmail.com>"]
description = "A Rust CLI tool to check subgraph status"
repository = "https://github.com/shiyasmohd/subgraph-status"
license = "MIT"
keywords = ["subgraph", "cli", "tool", "rust"]
categories = ["command-line-utilities"]
[[bin]]
name = "subgraph-status"
path = "src/main.rs"
[dependencies]
reqwest = { version = "0.11", features = ["blocking", "json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
colored = "2.0.0"
prettytable-rs = "0.10.0"
regex = "1.11.1"
clap = { version = "4.5.31", features = ["derive"] }