photoncloud-monorepo/flaredb/Cargo.toml
centra 8f94aee1fa Fix R8: Convert submodule gitlinks to regular directories
- Remove gitlinks (160000 mode) for chainfire, flaredb, iam
- Add workspace contents as regular tracked files
- Update flake.nix to use simple paths instead of builtins.fetchGit

This resolves the nix build failure where submodule directories
appeared empty in the nix store.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-09 16:51:20 +09:00

66 lines
1.2 KiB
TOML

[workspace]
members = [
"crates/flaredb-types",
"crates/flaredb-proto",
"crates/flaredb-storage",
"crates/flaredb-raft",
"crates/flaredb-server",
"crates/flaredb-pd",
"crates/flaredb-client",
"crates/flaredb-cli",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.75"
[workspace.dependencies]
# Async runtime
tokio = { version = "1.40", features = ["full"] }
tokio-stream = "0.1"
futures = "0.3"
async-trait = "0.1"
# Distributed Consensus
openraft = { version = "0.9", features = ["serde"] }
# Storage
rocksdb = { version = "0.24", default-features = false, features = ["multi-threaded-cf", "zstd", "lz4", "snappy"] }
# gRPC
tonic = "0.12"
tonic-build = "0.12"
tonic-health = "0.12"
prost = "0.13"
prost-types = "0.13"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bincode = "1.3"
# Logging & Tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Error handling
thiserror = "1.0"
anyhow = "1.0"
# CLI
clap = { version = "4.5", features = ["derive"] }
# Utilities
sha2 = "0.10"
bytes = "1.5"
# Testing
tempfile = "3"
[profile.release]
lto = true
opt-level = 3
codegen-units = 1