-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (45 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
52 lines (45 loc) · 1.19 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
[package]
name = "google-patent-cli"
version = "0.2.3"
edition = "2024"
rust-version = "1.93"
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
opt-level = 3
[profile.dev]
panic = "unwind"
[dependencies]
tokio = { version = "1", features = ["full"] }
tokio-tungstenite = { version = "0.26", features = ["rustls-tls-native-roots"] }
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
directories = "5"
anyhow = "1"
futures = "0.3"
toml = "0.9.8"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
url = "2"
uuid = { version = "1.18.1", features = ["v4"] }
# MCP SDK (official) - using 0.16.0
rmcp = { version = "0.16", features = ["server", "macros", "transport-io"] }
async-trait = "0.1"
thiserror = "2"
schemars = "1.2"
chrome-cdp = { git = "https://github.com/sonesuke/chrome-cdp", branch = "main" }
cypher-rs = { git = "https://github.com/sonesuke/cypher-rs" }
[dependencies.openssl-sys]
version = "0.9"
features = ["vendored"]
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
tempfile = "3"
[[test]]
name = "e2e_cli"
path = "e2e/cli.rs"
[[test]]
name = "e2e_mcp"
path = "e2e/mcp.rs"