添加qiming-rcoder模块

This commit is contained in:
Codex
2026-06-01 13:54:52 +08:00
parent 8092c4b1f8
commit 4b1a580132
539 changed files with 151650 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
[package]
name = "duckdb_manager"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
description = "DuckDB in-memory storage manager for RCoder"
[features]
default = []
[dependencies]
# DuckDB
duckdb = { workspace = true }
# Shared types
shared_types = { path = "../shared_types" }
# Async runtime
tokio = { workspace = true, features = ["full"] }
# Serialization
serde.workspace = true
serde_json.workspace = true
chrono.workspace = true
# Error handling
thiserror.workspace = true
anyhow.workspace = true
# Logging
tracing.workspace = true
# Utilities
parking_lot.workspace = true
[dev-dependencies]
tokio-test.workspace = true
tempfile.workspace = true