Skip to content

Commit 9ff1d82

Browse files
authored
v6.0.0: f64 prices, zero boilerplate, FPSS streaming decoded (#179)
v6.0.0: f64 prices, zero boilerplate, FPSS streaming decoded
1 parent 8128942 commit 9ff1d82

10 files changed

Lines changed: 22 additions & 22 deletions

File tree

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ No-JVM ThetaData Terminal - native Rust SDK for direct market data access.
4444

4545
```toml
4646
[dependencies]
47-
thetadatadx = "5.4"
47+
thetadatadx = "6.0"
4848
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
4949
```
5050

crates/tdbe/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tdbe"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
edition = "2021"
55
rust-version = "1.85"
66
authors = ["userFRM"]

crates/thetadatadx/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thetadatadx"
3-
version = "5.4.0"
3+
version = "6.0.0"
44
edition = "2021"
55
rust-version = "1.85"
66
authors = ["userFRM"]
@@ -23,7 +23,7 @@ default = []
2323
config-file = ["dep:toml"]
2424

2525
[dependencies]
26-
tdbe = { version = "0.6.0", path = "../tdbe" }
26+
tdbe = { version = "0.7.0", path = "../tdbe" }
2727

2828
# gRPC + protobuf (tonic 0.14 extracted prost codec into tonic-prost)
2929
tonic = { version = "=0.14.5", features = ["tls-ring", "tls-native-roots", "channel", "transport"] }

ffi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thetadatadx-ffi"
3-
version = "5.4.0"
3+
version = "6.0.0"
44
edition = "2021"
55
description = "C FFI layer for thetadatadx — used by Go and C++ SDKs"
66
license = "GPL-3.0-or-later"
@@ -10,5 +10,5 @@ crate-type = ["cdylib", "staticlib"]
1010

1111
[dependencies]
1212
thetadatadx = { path = "../crates/thetadatadx" }
13-
tdbe = { version = "0.6.0", path = "../crates/tdbe" }
13+
tdbe = { version = "0.7.0", path = "../crates/tdbe" }
1414
tokio = { version = "1.50.0", features = ["rt-multi-thread"] }

tools/cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thetadatadx-cli"
3-
version = "5.4.0"
3+
version = "6.0.0"
44
edition = "2021"
55
description = "CLI for ThetaDataDx — query ThetaData from your terminal"
66
license = "GPL-3.0-or-later"
@@ -11,7 +11,7 @@ path = "src/main.rs"
1111

1212
[dependencies]
1313
thetadatadx = { path = "../../crates/thetadatadx" }
14-
tdbe = { version = "0.6.0", path = "../../crates/tdbe" }
14+
tdbe = { version = "0.7.0", path = "../../crates/tdbe" }
1515
clap = { version = "4", features = ["derive"] }
1616
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
1717
sonic-rs = "0.3"

tools/mcp/Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/mcp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thetadatadx-mcp"
3-
version = "5.4.0"
3+
version = "6.0.0"
44
edition = "2021"
55
description = "MCP server for ThetaDataDx — gives LLMs instant access to ThetaData market data"
66
license = "GPL-3.0-or-later"
@@ -12,7 +12,7 @@ path = "src/main.rs"
1212

1313
[dependencies]
1414
thetadatadx = { path = "../../crates/thetadatadx" }
15-
tdbe = { version = "0.6.0", path = "../../crates/tdbe" }
15+
tdbe = { version = "0.7.0", path = "../../crates/tdbe" }
1616
tokio = { version = "1", features = ["rt-multi-thread", "macros", "io-util", "io-std"] }
1717
serde = { version = "1", features = ["derive"] }
1818
sonic-rs = "0.3"

tools/server/Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thetadatadx-server"
3-
version = "5.4.0"
3+
version = "6.0.0"
44
edition = "2021"
55
rust-version = "1.85"
66
authors = ["userFRM"]
@@ -21,7 +21,7 @@ path = "src/main.rs"
2121
[dependencies]
2222
thetadatadx = { path = "../../crates/thetadatadx", features = ["config-file"] }
2323
rustls = { version = "0.23", features = ["ring"] }
24-
tdbe = { version = "0.6.0", path = "../../crates/tdbe" }
24+
tdbe = { version = "0.7.0", path = "../../crates/tdbe" }
2525
axum = { version = "0.8", features = ["ws"] }
2626
tokio = { version = "1", features = ["full"] }
2727
sonic-rs = "0.3"

0 commit comments

Comments
 (0)