0c66fc6010
Move three directories into their target topology: - doctate-common/ -> common/ - client-desktop/ -> clients/desktop/ - watch/wearos/ -> clients/wearos/ Update doctate-common path-dependency in 3 Cargo.toml files (server, clients/desktop, experiments) and the workspace members list in the root Cargo.toml. Crate names unchanged (doctate-server, doctate-common, doctate-desktop). Workspace still in single-Cargo.lock form; isolation into standalone workspaces follows in stage 3. All 508 tests pass, experiments standalone-workspace also resolves the new path.
35 lines
842 B
TOML
35 lines
842 B
TOML
[workspace]
|
|
resolver = "3"
|
|
|
|
[package]
|
|
name = "doctate-experiments"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
doctate-server = { path = "../server" }
|
|
doctate-common = { path = "../common" }
|
|
tokio = { version = "1", features = ["full"] }
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart", "rustls-tls"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
clap = { version = "4", features = ["derive"] }
|
|
anyhow = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
time = { version = "0.3", features = ["formatting", "macros"] }
|
|
similar = "2"
|
|
tempfile = "3"
|
|
|
|
[[bin]]
|
|
name = "run_full_case"
|
|
path = "src/bin/run_full_case.rs"
|
|
|
|
[[bin]]
|
|
name = "run_llm_only"
|
|
path = "src/bin/run_llm_only.rs"
|
|
|
|
[[bin]]
|
|
name = "diff_runs"
|
|
path = "src/bin/diff_runs.rs"
|