chore: 依存パッケージの集約
This commit is contained in:
parent
469c5ead99
commit
99dc94416b
33
Cargo.toml
33
Cargo.toml
|
|
@ -11,9 +11,40 @@ members = [
|
||||||
"crates/provider",
|
"crates/provider",
|
||||||
"crates/pod-registry",
|
"crates/pod-registry",
|
||||||
"crates/tools",
|
"crates/tools",
|
||||||
"crates/tui", "crates/memory",
|
"crates/tui",
|
||||||
|
"crates/memory",
|
||||||
]
|
]
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
||||||
|
[workspace.dependencies]
|
||||||
|
# Internal crates
|
||||||
|
llm-worker = { path = "crates/llm-worker", version = "0.2" }
|
||||||
|
llm-worker-macros = { path = "crates/llm-worker-macros", version = "0.2" }
|
||||||
|
manifest = { path = "crates/manifest" }
|
||||||
|
memory = { path = "crates/memory" }
|
||||||
|
pod-registry = { path = "crates/pod-registry" }
|
||||||
|
protocol = { path = "crates/protocol" }
|
||||||
|
provider = { path = "crates/provider" }
|
||||||
|
session-store = { path = "crates/session-store" }
|
||||||
|
tools = { path = "crates/tools" }
|
||||||
|
|
||||||
|
# External
|
||||||
|
# Note: `reqwest` and `chrono` are not aggregated here because some crates
|
||||||
|
# need `default-features = false`, which workspace inheritance cannot override.
|
||||||
|
async-trait = "0.1"
|
||||||
|
fs4 = "0.13"
|
||||||
|
futures = "0.3"
|
||||||
|
libc = "0.2"
|
||||||
|
schemars = "1.2"
|
||||||
|
serde = "1.0"
|
||||||
|
serde_json = "1.0"
|
||||||
|
sha2 = "0.11"
|
||||||
|
tempfile = "3.27"
|
||||||
|
thiserror = "2.0"
|
||||||
|
tokio = "1.52"
|
||||||
|
toml = "1.1"
|
||||||
|
tracing = "0.1"
|
||||||
|
uuid = "1.23"
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,6 @@ edition.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
manifest = { path = "../manifest" }
|
manifest = { workspace = true }
|
||||||
protocol = { path = "../protocol" }
|
protocol = { workspace = true }
|
||||||
tokio = { version = "1.49", features = ["full"] }
|
tokio = { workspace = true, features = ["full"] }
|
||||||
|
|
|
||||||
|
|
@ -6,22 +6,22 @@ edition.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { workspace = true, features = ["derive"] }
|
||||||
serde_json = "1.0"
|
serde_json = { workspace = true }
|
||||||
thiserror = "2.0"
|
thiserror = { workspace = true }
|
||||||
tracing = "0.1"
|
tracing = { workspace = true }
|
||||||
async-trait = "0.1"
|
async-trait = { workspace = true }
|
||||||
futures = "0.3"
|
futures = { workspace = true }
|
||||||
tokio = { version = "1.49", features = ["macros", "rt-multi-thread"] }
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
||||||
tokio-util = "0.7"
|
tokio-util = "0.7"
|
||||||
reqwest = { version = "0.13.1", default-features = false, features = ["stream", "json", "native-tls", "http2"] }
|
reqwest = { version = "0.13", default-features = false, features = ["stream", "json", "native-tls", "http2"] }
|
||||||
eventsource-stream = "0.2"
|
eventsource-stream = "0.2"
|
||||||
llm-worker-macros = { path = "../llm-worker-macros", version = "0.2" }
|
llm-worker-macros = { workspace = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
clap = { version = "4.5", features = ["derive", "env"] }
|
clap = { version = "4.5", features = ["derive", "env"] }
|
||||||
schemars = "1.2"
|
schemars = { workspace = true }
|
||||||
tempfile = "3.24"
|
tempfile = { workspace = true }
|
||||||
dotenv = "0.15"
|
dotenv = "0.15"
|
||||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||||
trybuild = "1.0.116"
|
trybuild = "1.0.116"
|
||||||
|
|
|
||||||
|
|
@ -5,13 +5,13 @@ edition.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
llm-worker = { version = "0.2.1", path = "../llm-worker" }
|
llm-worker = { workspace = true }
|
||||||
protocol = { version = "0.1.0", path = "../protocol" }
|
protocol = { workspace = true }
|
||||||
serde = { version = "1.0.228", features = ["derive"] }
|
serde = { workspace = true, features = ["derive"] }
|
||||||
serde_ignored = "0.1.14"
|
serde_ignored = "0.1.14"
|
||||||
thiserror = "2.0.18"
|
thiserror = { workspace = true }
|
||||||
toml = "1.1.2"
|
toml = { workspace = true }
|
||||||
tracing = "0.1.44"
|
tracing = { workspace = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempfile = "3.27.0"
|
tempfile = { workspace = true }
|
||||||
|
|
|
||||||
|
|
@ -5,19 +5,19 @@ edition.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-trait = "0.1.89"
|
async-trait = { workspace = true }
|
||||||
chrono = { version = "0.4.44", features = ["serde"] }
|
chrono = { version = "0.4", features = ["serde"] }
|
||||||
libc = "0.2.186"
|
libc = { workspace = true }
|
||||||
llm-worker = { version = "0.2.1", path = "../llm-worker" }
|
llm-worker = { workspace = true }
|
||||||
manifest = { version = "0.1.0", path = "../manifest" }
|
manifest = { workspace = true }
|
||||||
schemars = "1.2.1"
|
schemars = { workspace = true }
|
||||||
serde = { version = "1.0.228", features = ["derive"] }
|
serde = { workspace = true, features = ["derive"] }
|
||||||
serde_json = "1.0.149"
|
serde_json = { workspace = true }
|
||||||
serde_yaml = "0.9.34"
|
serde_yaml = "0.9.34"
|
||||||
thiserror = "2.0.18"
|
thiserror = { workspace = true }
|
||||||
tracing = "0.1.44"
|
tracing = { workspace = true }
|
||||||
uuid = { version = "1.23.1", features = ["v7", "serde"] }
|
uuid = { workspace = true, features = ["v7", "serde"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempfile = "3.27.0"
|
tempfile = { workspace = true }
|
||||||
tokio = { version = "1.52.1", features = ["macros", "rt-multi-thread"] }
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
||||||
|
|
|
||||||
|
|
@ -5,13 +5,13 @@ edition.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
fs4 = { version = "0.13.1", features = ["sync"] }
|
fs4 = { workspace = true, features = ["sync"] }
|
||||||
libc = "0.2.186"
|
libc = { workspace = true }
|
||||||
manifest = { version = "0.1.0", path = "../manifest" }
|
manifest = { workspace = true }
|
||||||
serde = { version = "1.0.228", features = ["derive"] }
|
serde = { workspace = true, features = ["derive"] }
|
||||||
serde_json = "1.0.149"
|
serde_json = { workspace = true }
|
||||||
session-store = { version = "0.1.0", path = "../session-store" }
|
session-store = { workspace = true }
|
||||||
thiserror = "2.0"
|
thiserror = { workspace = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempfile = "3.27.0"
|
tempfile = { workspace = true }
|
||||||
|
|
|
||||||
|
|
@ -5,37 +5,37 @@ edition.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-trait = "0.1.89"
|
async-trait = { workspace = true }
|
||||||
clap = { version = "4.6.0", features = ["derive"] }
|
clap = { version = "4.6.0", features = ["derive"] }
|
||||||
llm-worker = { version = "0.2.1", path = "../llm-worker" }
|
llm-worker = { workspace = true }
|
||||||
session-store = { version = "0.1.0", path = "../session-store" }
|
session-store = { workspace = true }
|
||||||
manifest = { version = "0.1.0", path = "../manifest" }
|
manifest = { workspace = true }
|
||||||
protocol = { version = "0.1.0", path = "../protocol" }
|
protocol = { workspace = true }
|
||||||
provider = { version = "0.1.0", path = "../provider" }
|
provider = { workspace = true }
|
||||||
pod-registry = { version = "0.1.0", path = "../pod-registry" }
|
pod-registry = { workspace = true }
|
||||||
serde = { version = "1.0.228", features = ["derive"] }
|
serde = { workspace = true, features = ["derive"] }
|
||||||
serde_json = "1.0.149"
|
serde_json = { workspace = true }
|
||||||
thiserror = "2.0"
|
thiserror = { workspace = true }
|
||||||
tokio = { version = "1.49", features = ["fs", "io-util", "macros", "net", "process", "rt-multi-thread", "signal", "sync", "time"] }
|
tokio = { workspace = true, features = ["fs", "io-util", "macros", "net", "process", "rt-multi-thread", "signal", "sync", "time"] }
|
||||||
toml = "1.1.2"
|
toml = { workspace = true }
|
||||||
tracing = "0.1.44"
|
tracing = { workspace = true }
|
||||||
tools = { version = "0.1.0", path = "../tools" }
|
tools = { workspace = true }
|
||||||
minijinja = "2.19.0"
|
minijinja = "2.19.0"
|
||||||
chrono = "0.4.44"
|
chrono = "0.4"
|
||||||
include_dir = "0.7.4"
|
include_dir = "0.7.4"
|
||||||
fs4 = { version = "0.13.1", features = ["sync"] }
|
fs4 = { workspace = true, features = ["sync"] }
|
||||||
libc = "0.2.186"
|
libc = { workspace = true }
|
||||||
schemars = "1.2.1"
|
schemars = { workspace = true }
|
||||||
memory = { version = "0.1.0", path = "../memory" }
|
memory = { workspace = true }
|
||||||
uuid = { version = "1.23.1", features = ["v7"] }
|
uuid = { workspace = true, features = ["v7"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
async-trait = "0.1.89"
|
async-trait = { workspace = true }
|
||||||
dotenv = "0.15.0"
|
dotenv = "0.15.0"
|
||||||
futures = "0.3.32"
|
futures = { workspace = true }
|
||||||
session-store = { path = "../session-store" }
|
session-store = { workspace = true }
|
||||||
tempfile = "3.27.0"
|
tempfile = { workspace = true }
|
||||||
tokio = { version = "1.49", features = ["macros", "rt-multi-thread", "time"] }
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "time"] }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
toml = "1.1.2"
|
toml = { workspace = true }
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ edition.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { workspace = true, features = ["derive"] }
|
||||||
serde_json = "1.0"
|
serde_json = { workspace = true }
|
||||||
tokio = { version = "1.51.1", features = ["io-util"] }
|
tokio = { workspace = true, features = ["io-util"] }
|
||||||
uuid = { version = "1.23.1", features = ["serde"] }
|
uuid = { workspace = true, features = ["serde"] }
|
||||||
|
|
|
||||||
|
|
@ -5,20 +5,20 @@ edition.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-trait = "0.1.89"
|
async-trait = { workspace = true }
|
||||||
base64 = "0.22.1"
|
base64 = "0.22.1"
|
||||||
chrono = { version = "0.4.44", default-features = false, features = ["serde", "clock"] }
|
chrono = { version = "0.4", default-features = false, features = ["serde", "clock"] }
|
||||||
llm-worker = { version = "0.2.1", path = "../llm-worker" }
|
llm-worker = { workspace = true }
|
||||||
manifest = { version = "0.1.0", path = "../manifest" }
|
manifest = { workspace = true }
|
||||||
reqwest = { version = "0.13.2", features = ["json", "native-tls"] }
|
reqwest = { version = "0.13", features = ["json", "native-tls"] }
|
||||||
serde = { version = "1.0.228", features = ["derive"] }
|
serde = { workspace = true, features = ["derive"] }
|
||||||
serde_json = "1.0.149"
|
serde_json = { workspace = true }
|
||||||
thiserror = "2.0"
|
thiserror = { workspace = true }
|
||||||
tokio = { version = "1.52.1", features = ["sync", "fs", "rt"] }
|
tokio = { workspace = true, features = ["sync", "fs", "rt"] }
|
||||||
toml = "1.1.2"
|
toml = { workspace = true }
|
||||||
tracing = "0.1.44"
|
tracing = { workspace = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
serial_test = "3.4.0"
|
serial_test = "3.4.0"
|
||||||
tempfile = "3.27.0"
|
tempfile = { workspace = true }
|
||||||
wiremock = "0.6.5"
|
wiremock = "0.6.5"
|
||||||
|
|
|
||||||
|
|
@ -6,19 +6,19 @@ edition.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
llm-worker = { path = "../llm-worker" }
|
llm-worker = { workspace = true }
|
||||||
async-trait = "0.1"
|
async-trait = { workspace = true }
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { workspace = true, features = ["derive"] }
|
||||||
serde_json = "1.0"
|
serde_json = { workspace = true }
|
||||||
tokio = { version = "1.49", features = ["fs", "io-util"] }
|
tokio = { workspace = true, features = ["fs", "io-util"] }
|
||||||
uuid = { version = "1", features = ["v7", "serde"] }
|
uuid = { workspace = true, features = ["v7", "serde"] }
|
||||||
thiserror = "2.0"
|
thiserror = { workspace = true }
|
||||||
sha2 = "0.11.0"
|
sha2 = { workspace = true }
|
||||||
hex = "0.4.3"
|
hex = "0.4.3"
|
||||||
protocol = { version = "0.1.0", path = "../protocol" }
|
protocol = { workspace = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "1.49", features = ["macros", "rt-multi-thread", "fs", "io-util"] }
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "fs", "io-util"] }
|
||||||
tempfile = "3.24"
|
tempfile = { workspace = true }
|
||||||
futures = "0.3"
|
futures = { workspace = true }
|
||||||
async-trait = "0.1"
|
async-trait = { workspace = true }
|
||||||
|
|
|
||||||
|
|
@ -5,23 +5,23 @@ edition.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-trait = "0.1.89"
|
async-trait = { workspace = true }
|
||||||
globset = "0.4.18"
|
globset = "0.4.18"
|
||||||
grep-matcher = "0.1.8"
|
grep-matcher = "0.1.8"
|
||||||
grep-regex = "0.1.14"
|
grep-regex = "0.1.14"
|
||||||
grep-searcher = "0.1.16"
|
grep-searcher = "0.1.16"
|
||||||
ignore = "0.4.25"
|
ignore = "0.4.25"
|
||||||
llm-worker = { version = "0.2.1", path = "../llm-worker" }
|
llm-worker = { workspace = true }
|
||||||
manifest = { version = "0.1.0", path = "../manifest" }
|
manifest = { workspace = true }
|
||||||
schemars = "1.2.1"
|
schemars = { workspace = true }
|
||||||
serde = { version = "1.0.228", features = ["derive"] }
|
serde = { workspace = true, features = ["derive"] }
|
||||||
serde_json = "1.0.149"
|
serde_json = { workspace = true }
|
||||||
sha2 = "0.11.0"
|
sha2 = { workspace = true }
|
||||||
tempfile = "3.27.0"
|
tempfile = { workspace = true }
|
||||||
thiserror = "2.0.18"
|
thiserror = { workspace = true }
|
||||||
tokio = { version = "1.51.1", features = ["process", "rt", "time"] }
|
tokio = { workspace = true, features = ["process", "rt", "time"] }
|
||||||
tracing = "0.1.44"
|
tracing = { workspace = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
filetime = "0.2.27"
|
filetime = "0.2.27"
|
||||||
tokio = { version = "1.51.1", features = ["macros", "rt-multi-thread"] }
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
||||||
|
|
|
||||||
|
|
@ -5,14 +5,14 @@ edition.workspace = true
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
protocol = { path = "../protocol" }
|
protocol = { workspace = true }
|
||||||
ratatui = { version = "0.30.0", features = ["scrolling-regions"] }
|
ratatui = { version = "0.30.0", features = ["scrolling-regions"] }
|
||||||
crossterm = "0.28"
|
crossterm = "0.28"
|
||||||
tokio = { version = "1.49", features = ["rt-multi-thread", "macros", "net", "io-util", "sync", "time", "process"] }
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "net", "io-util", "sync", "time", "process"] }
|
||||||
serde_json = "1.0"
|
serde_json = { workspace = true }
|
||||||
unicode-width = "0.2.2"
|
unicode-width = "0.2.2"
|
||||||
uuid = "1.23"
|
uuid = { workspace = true }
|
||||||
toml = "1.1.2"
|
toml = { workspace = true }
|
||||||
manifest = { version = "0.1.0", path = "../manifest" }
|
manifest = { workspace = true }
|
||||||
session-store = { version = "0.1.0", path = "../session-store" }
|
session-store = { workspace = true }
|
||||||
pod-registry = { version = "0.1.0", path = "../pod-registry" }
|
pod-registry = { workspace = true }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user