-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (52 loc) · 1.74 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (52 loc) · 1.74 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "tiingo-mcp"
version = "2.1.0"
edition = "2024"
rust-version = "1.88"
description = "MCP server for the Tiingo financial data API"
license = "MIT"
repository = "https://github.com/major7apps/tiingo-mcp"
keywords = ["mcp", "tiingo", "finance", "market-data"]
categories = ["command-line-utilities", "api-bindings"]
include = [
"/src/**/*.rs",
"/src/mcp/data/**/*.json",
"/Cargo.toml",
"/Cargo.lock",
"/README.md",
"/CHANGELOG.md",
"/LICENSE",
]
[[bin]]
name = "tiingo-mcp"
path = "src/main.rs"
[profile.dist]
inherits = "release"
lto = "thin"
[dependencies]
anyhow = "1.0"
bytes = "1.10"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.5", features = ["derive"] }
csv = "1.4"
futures-util = "0.3"
httpdate = "1.0"
rand = "0.10"
reqwest = { version = "0.13.4", default-features = false, features = ["json", "query", "rustls", "stream"] }
rmcp = { version = "=3.1.4", default-features = false, features = ["macros", "server", "transport-io"] }
schemars = { version = "1.0", features = ["chrono04"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
tokio = { version = "1.47", features = ["macros", "rt-multi-thread", "sync", "time"] }
tokio-tungstenite = { version = "0.30", default-features = false, features = ["connect", "rustls-tls-native-roots"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", default-features = false, features = ["ansi", "env-filter", "fmt", "std"] }
url = "2.5"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
rmcp = { version = "=3.1.4", default-features = false, features = ["client", "macros", "server", "transport-child-process", "transport-io"] }
tokio = { version = "1.47", features = ["test-util"] }
wait-timeout = "0.2"
wiremock = "0.6"