-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 998 Bytes
/
Cargo.toml
File metadata and controls
33 lines (31 loc) · 998 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
[workspace]
resolver = "2"
members = [
"crates/parallax-core",
"crates/parallax-store",
"crates/parallax-graph",
"crates/parallax-query",
"crates/parallax-policy",
"crates/parallax-ingest",
"crates/parallax-connect",
"crates/parallax-server",
"crates/parallax-cli",
"crates/connector-aws-synthetic",
"crates/connector-gcp-synthetic",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/copyleftdev/parallax"
homepage = "https://github.com/copyleftdev/parallax"
rust-version = "1.76"
keywords = ["graph", "security", "cybersecurity", "query", "graph-database"]
categories = ["database", "network-programming", "command-line-utilities"]
[workspace.dependencies]
# Shared across crates — pin versions here, reference in crate Cargo.tomls
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
thiserror = "2"
tracing = "0.1"
tokio = { version = "1", features = ["full"] }