-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (62 loc) · 1.92 KB
/
Copy pathCargo.toml
File metadata and controls
69 lines (62 loc) · 1.92 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "rusty_red_native"
version.workspace = true
edition.workspace = true
description = "Rusty Red GraphDB engine, product server, MCP adapter, and pure Rust graph algorithm helpers."
license.workspace = true
repository.workspace = true
rust-version.workspace = true
readme = "README.md"
keywords.workspace = true
categories.workspace = true
[workspace]
members = [
".",
"crates/rustyred-core",
"crates/rustyred-mcp",
"crates/rustyred-compat-server",
"crates/rustyred-server",
"crates/rustyred-resp-server",
"crates/rustyred-search",
]
resolver = "2"
[workspace.package]
version = "0.9.1"
edition = "2021"
license = "MIT"
repository = "https://github.com/Travis-Gilbert/RustyRed-Graph-Database"
rust-version = "1.95"
keywords = ["graph", "database", "vector-search", "mcp", "knowledge-graph"]
categories = ["database-implementations", "data-structures", "algorithms"]
[lib]
name = "rusty_red_native"
[dependencies]
rustyred-core = { path = "crates/rustyred-core", version = "0.9.1" }
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
debug = false
strip = "symbols"
[profile.railway]
inherits = "release"
lto = false
codegen-units = 16
# Staged config for cargo-dist / `dist` (https://opensource.axo.dev/cargo-dist/).
# Inert for normal `cargo build`. Run `dist init` to generate a release
# workflow that produces a curl|sh installer, a Homebrew formula, and an npm
# shim from this config. The hand-written .github/workflows/release.yml already
# ships prebuilt binaries on tag; `dist init` supersedes it when you adopt the
# installer ecosystem. `dist init` will also pin `dist-version` to your tool.
[workspace.metadata.dist]
dist-version = "0.28.0"
ci = "github"
installers = ["shell", "homebrew", "npm"]
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
]
install-path = "CARGO_HOME"