forked from StarlightSearch/EmbedAnything
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (31 loc) · 935 Bytes
/
Cargo.toml
File metadata and controls
39 lines (31 loc) · 935 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
29
30
31
32
33
34
35
36
37
38
[workspace]
members = [
"processors",
"rust",
"python",
"server"
]
# Python package needs to be built by maturin.
exclude = ["python"]
resolver = "2"
[workspace.package]
edition = "2021"
license = "Apache-2.0"
description = "Embed anything at lightning speed"
repository = "https://github.com/StarlightSearch/EmbedAnything"
authors = ["Akshay Ballal <arballal95@gmail.com>"]
exclude = ["test_files/*", "python", "*.py", "pyproject.toml", "examples/images/*", "mkdocs.yml", "docs/*", "tests/*", ".github", "Dockerfile", "docs"]
version = "0.7.0"
[workspace.dependencies]
pdf-extract = "0.9.0"
candle-nn = { version = "0.9.1" }
candle-transformers = { version = "0.9.1" }
candle-core = { version = "0.9.1" }
candle-flash-attn = { version = "0.9.1" }
processors-rs = { path = "processors", version = "=0.7.0" }
strum = "0.27.1"
strum_macros = "0.27.1"
[profile.dev]
rpath = true
[profile.release]
rpath = true