-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
135 lines (129 loc) · 4.88 KB
/
Copy pathCargo.toml
File metadata and controls
135 lines (129 loc) · 4.88 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
[workspace]
members = [
"crates/animus-plugin-protocol",
"crates/animus-plugin-runtime",
"crates/orchestrator-daemon-runtime",
"crates/orchestrator-logging",
"crates/orchestrator-plugin-host",
"crates/orchestrator-config",
"crates/orchestrator-core",
"crates/orchestrator-cli",
"crates/animus-runtime-shared",
"crates/animus-mcp-oauth",
]
default-members = [
"crates/orchestrator-cli",
]
resolver = "2"
[workspace.package]
license = "Elastic-2.0"
description = "Autonomous AI agent orchestrator for multi-model dev teams"
homepage = "https://animus-docs.vercel.app/"
repository = "https://github.com/launchapp-dev/animus-cli"
keywords = ["ai-agent", "orchestrator", "llm", "cli", "mcp"]
categories = ["command-line-utilities", "development-tools"]
[workspace.dependencies]
# Protocol/wire-type crates live in launchapp-dev/animus-protocol, never in
# this repo. `protocol` + `animus-config-protocol` moved out in v0.6.1; all
# animus-protocol git deps are pinned to the SAME tag (v0.1.26) so transitive
# animus-subject-protocol resolves to one source (no duplicate-crate type
# mismatches). animus-plugin-protocol/runtime remain in-tree pending a
# follow-up move.
animus-plugin-protocol = { path = "crates/animus-plugin-protocol" }
animus-actor = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.1.26" }
animus-config-protocol = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.1.26" }
animus-journal-protocol = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.1.26" }
animus-provider-protocol = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.1.26" }
animus-session-backend = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.1.26" }
animus-subject-protocol = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.1.26" }
protocol = { git = "https://github.com/launchapp-dev/animus-protocol", tag = "v0.1.26", package = "protocol" }
orchestrator-daemon-runtime = { path = "crates/orchestrator-daemon-runtime" }
orchestrator-logging = { path = "crates/orchestrator-logging" }
orchestrator-plugin-host = { path = "crates/orchestrator-plugin-host" }
orchestrator-config = { path = "crates/orchestrator-config" }
orchestrator-core = { path = "crates/orchestrator-core" }
# v0.5.1 round-5 fold-in: the in-tree `workflow-runner-v2` lib was deleted
# in favour of `animus-runtime-shared`. The crate is also published as
# `launchapp-dev/animus-runtime-shared` v0.1.0 for the plugin to consume;
# inside this workspace it lives vendored under `crates/animus-runtime-shared`.
animus-runtime-shared = { path = "crates/animus-runtime-shared" }
animus-mcp-oauth = { path = "crates/animus-mcp-oauth" }
croner = "3.0.1"
[profile.release]
strip = true
lto = "thin"
codegen-units = 1
opt-level = "z"
[workspace.lints.rust]
unsafe_code = "deny"
unused_must_use = "warn"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
must_use_candidate = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
doc_markdown = "allow"
struct_excessive_bools = "allow"
too_many_lines = "allow"
cast_possible_truncation = "allow"
cast_sign_loss = "allow"
cast_precision_loss = "allow"
cast_lossless = "allow"
similar_names = "allow"
wildcard_imports = "allow"
needless_pass_by_value = "allow"
return_self_not_must_use = "allow"
unused_self = "allow"
struct_field_names = "allow"
trivially_copy_pass_by_ref = "allow"
redundant_closure_for_method_calls = "allow"
single_match_else = "allow"
manual_string_new = "allow"
items_after_statements = "allow"
implicit_hasher = "allow"
uninlined_format_args = "allow"
unnecessary_wraps = "allow"
match_bool = "allow"
let_underscore_untyped = "allow"
manual_let_else = "allow"
assigning_clones = "allow"
unused_async = "allow"
option_if_let_else = "allow"
semicolon_if_nothing_returned = "allow"
cast_possible_wrap = "allow"
if_not_else = "allow"
default_trait_access = "allow"
used_underscore_binding = "allow"
unreadable_literal = "allow"
map_unwrap_or = "allow"
needless_raw_string_hashes = "allow"
match_same_arms = "allow"
ignored_unit_patterns = "allow"
needless_borrows_for_generic_args = "allow"
ref_option = "allow"
option_option = "allow"
elidable_lifetime_names = "allow"
needless_continue = "allow"
implicit_clone = "allow"
format_push_string = "allow"
format_collect = "allow"
unnecessary_debug_formatting = "allow"
bool_assert_comparison = "allow"
unnested_or_patterns = "allow"
unnecessary_semicolon = "allow"
stable_sort_primitive = "allow"
option_as_ref_cloned = "allow"
items_after_test_module = "allow"
cloned_instead_of_copied = "allow"
clone_on_copy = "allow"
too_many_arguments = "allow"
redundant_else = "allow"
float_cmp = "allow"
comparison_to_empty = "allow"
bool_to_int_with_if = "allow"
large_futures = "allow"
map_flatten = "allow"
cloned_ref_to_slice_refs = "allow"
field_reassign_with_default = "allow"