-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (46 loc) · 1.65 KB
/
Copy pathCargo.toml
File metadata and controls
50 lines (46 loc) · 1.65 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
[workspace]
members = ["crates/*"]
resolver = "3"
[workspace.package]
version = "0.3.1"
edition = "2024"
authors = ["Matt George"]
description = "CLI and MCP server for academic paper search, management, and local semantic search"
license = "MIT"
readme = "README.md"
repository = "https://github.com/mmgeorge/papers"
[workspace.dependencies]
base64 = "0.22"
papers-openalex = { path = "crates/papers-openalex", version = "0.3.1" }
papers-zotero = { path = "crates/papers-zotero", version = "0.3.1" }
papers-core = { path = "crates/papers-core", version = "0.3.1" }
papers-db = { path = "crates/papers-db", version = "0.3.1" }
dirs = "6"
bon = "3"
clap = { version = "4", features = ["derive", "wrap_help"] }
futures = "0.3"
reqwest = { version = "0.13", features = ["json", "query", "stream", "multipart"] }
rmcp = { version = "0.15", features = ["server", "transport-io", "macros", "elicitation"] }
schemars = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
pdf-extract = "0.10"
zip = { version = "2", default-features = false, features = ["deflate"] }
md-5 = "0.10"
papers-datalab = { path = "crates/papers-datalab", version = "0.3.1" }
papers-extract = { path = "crates/papers-extract", version = "0.3.1" }
papers-mcp = { path = "crates/papers-mcp", version = "0.3.1" }
wiremock = "0.6"
serial_test = "3"
tempfile = "3"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[workspace.metadata.release]
shared-version = true
consolidate-commits = true
tag-name = "v{{version}}"
pre-release-commit-message = "chore: release v{{version}}"