-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 801 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 801 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
[package]
name = "thetadatadx-cli"
version = "10.0.0"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
description = "CLI for ThetaDataDxClient — query ThetaData from your terminal"
homepage.workspace = true
repository.workspace = true
license.workspace = true
# Internal CLI — never published to crates.io. Only `tdbe` and
# `thetadatadx` are published (see publish-crate job in ci.yml).
publish = false
[lints]
workspace = true
[[bin]]
name = "tdx"
path = "src/main.rs"
[dependencies]
thetadatadx = { path = "../../crates/thetadatadx" }
tdbe = { version = "0.13.1", path = "../../crates/tdbe" }
clap = { version = "4.6.1", features = ["derive"] }
tokio = { version = "1.52.1", features = ["rt-multi-thread", "macros"] }
sonic-rs = "0.5.8"
comfy-table = "7.2.2"