-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 895 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 895 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
[package]
name = "fastmemory"
version = "0.4.0"
edition = "2021"
description = "A Topology Ontological Clustering Engine for AI Agent Memory"
license = "MIT"
repository = "https://github.com/FastBuilderAI/memory"
homepage = "https://fastbuilder.ai"
exclude = ["example/*", "scripts/*", "*.png", "*.md", "!README.md"]
[lib]
name = "fastmemory"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "fastmemory"
path = "src/main.rs"
[features]
default = []
python = ["pyo3/extension-module"]
[dependencies]
regex = "1.12.3"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
pyo3 = { version = "0.28.2", optional = true }
clap = { version = "4.5.4", features = ["derive"] }
tokio = { version = "1.37.0", features = ["full", "rt-multi-thread"] }
axum = "0.7.5"
reqwest = { version = "0.13.2", features = ["json", "rustls", "blocking"] }
sysinfo = "0.38.4"
dotenv = "0.15.0"