-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 978 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 978 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
25
26
27
28
29
30
31
32
33
[package]
name = "dataverse-cli"
version = "0.1.3"
edition = "2021"
description = "CLI for Macrocosmos Data Universe (Bittensor SN13) - query social data from X/Twitter and Reddit"
license = "MIT"
repository = "https://github.com/macrocosm-os/dataverse-cli"
keywords = ["bittensor", "macrocosmos", "social-data", "cli", "sn13"]
categories = ["command-line-utilities"]
include = ["src/**/*", "Cargo.toml", "LICENSE", "README.md", "AGENTS.md"]
[[bin]]
name = "dv"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
reqwest = { version = "0.12", features = ["json", "rustls-tls", "http2"], default-features = false }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
anyhow = "1"
colored = "3"
tabled = { version = "0.17", features = ["ansi"] }
dirs = "6"
toml = "0.8"
csv = "1"
dialoguer = "0.11"
[profile.release]
opt-level = 3
lto = true
strip = true