forked from codecoradev/uteke
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 736 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (30 loc) · 736 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
[workspace]
resolver = "2"
members = [
"crates/uteke-core",
"crates/uteke-cli",
"crates/uteke-server",
"crates/uteke-mcp",
]
[workspace.package]
version = "0.8.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/codecoradev/uteke"
description = "The Brain for Your AI — persistent memory and smart context management"
rust-version = "1.75"
keywords = ["memory", "ai", "embedding", "vector-search", "semantic"]
categories = ["command-line-utilities", "science"]
readme = "README.md"
homepage = "https://uteke.dev"
[workspace.lints.rust]
unsafe_code = "forbid"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
panic = "abort"
[profile.bench]
opt-level = 3
lto = true