@@ -39,10 +39,10 @@ jobs:
3939 codecov-name : ${{ matrix.label }}
4040 target : ${{ matrix.target }}
4141 packages : |
42- llm-coding-tools -core
43- llm-coding-tools -agents
44- llm-coding-tools -serdesai
45- llm-coding-tools -models-dev
42+ reloaded-code -core
43+ reloaded-code -agents
44+ reloaded-code -serdesai
45+ reloaded-code -models-dev
4646
4747 - name : Run tests (Blocking) and upload coverage
4848 if : matrix.mode == 'blocking'
5555 codecov-name : ${{ matrix.label }}
5656 target : ${{ matrix.target }}
5757 packages : |
58- llm-coding-tools -core
59- llm-coding-tools -models-dev
58+ reloaded-code -core
59+ reloaded-code -models-dev
6060 no-default-features : true
6161 features : " blocking"
6262
@@ -65,17 +65,17 @@ jobs:
6565 working-directory : src
6666 shell : bash
6767 run : |
68- cargo test -p llm-coding-tools -bubblewrap
69- cargo test -p llm-coding-tools -core --features linux-bubblewrap
70- cargo test -p llm-coding-tools -serdesai --features linux-bubblewrap
68+ cargo test -p reloaded-code -bubblewrap
69+ cargo test -p reloaded-code -core --features linux-bubblewrap
70+ cargo test -p reloaded-code -serdesai --features linux-bubblewrap
7171
7272 - name : Run Linux-only blocking feature coverage
7373 if : matrix.mode == 'blocking' && matrix.linux_bwrap
7474 working-directory : src
7575 shell : bash
7676 run : |
77- cargo test -p llm-coding-tools -bubblewrap --no-default-features --features blocking
78- cargo test -p llm-coding-tools -core --no-default-features --features blocking,linux-bubblewrap
77+ cargo test -p reloaded-code -bubblewrap --no-default-features --features blocking
78+ cargo test -p reloaded-code -core --no-default-features --features blocking,linux-bubblewrap
7979
8080 - name : Check documentation is valid
8181 working-directory : src
@@ -85,26 +85,26 @@ jobs:
8585 run : |
8686 case "${{ matrix.mode }}:${{ matrix.linux_bwrap }}" in
8787 async:true)
88- cargo doc -p llm-coding-tools -bubblewrap --document-private-items --no-deps --target ${{ matrix.target }}
89- cargo doc -p llm-coding-tools -core --features linux-bubblewrap --document-private-items --no-deps --target ${{ matrix.target }}
90- cargo doc -p llm-coding-tools -agents --document-private-items --no-deps --target ${{ matrix.target }}
91- cargo doc -p llm-coding-tools -serdesai --features linux-bubblewrap --document-private-items --no-deps --target ${{ matrix.target }}
92- cargo doc -p llm-coding-tools -models-dev --document-private-items --no-deps --target ${{ matrix.target }}
88+ cargo doc -p reloaded-code -bubblewrap --document-private-items --no-deps --target ${{ matrix.target }}
89+ cargo doc -p reloaded-code -core --features linux-bubblewrap --document-private-items --no-deps --target ${{ matrix.target }}
90+ cargo doc -p reloaded-code -agents --document-private-items --no-deps --target ${{ matrix.target }}
91+ cargo doc -p reloaded-code -serdesai --features linux-bubblewrap --document-private-items --no-deps --target ${{ matrix.target }}
92+ cargo doc -p reloaded-code -models-dev --document-private-items --no-deps --target ${{ matrix.target }}
9393 ;;
9494 async:false)
95- cargo doc -p llm-coding-tools -core --document-private-items --no-deps --target ${{ matrix.target }}
96- cargo doc -p llm-coding-tools -agents --document-private-items --no-deps --target ${{ matrix.target }}
97- cargo doc -p llm-coding-tools -serdesai --document-private-items --no-deps --target ${{ matrix.target }}
98- cargo doc -p llm-coding-tools -models-dev --document-private-items --no-deps --target ${{ matrix.target }}
95+ cargo doc -p reloaded-code -core --document-private-items --no-deps --target ${{ matrix.target }}
96+ cargo doc -p reloaded-code -agents --document-private-items --no-deps --target ${{ matrix.target }}
97+ cargo doc -p reloaded-code -serdesai --document-private-items --no-deps --target ${{ matrix.target }}
98+ cargo doc -p reloaded-code -models-dev --document-private-items --no-deps --target ${{ matrix.target }}
9999 ;;
100100 blocking:true)
101- cargo doc -p llm-coding-tools -bubblewrap --no-default-features --features blocking --document-private-items --no-deps --target ${{ matrix.target }}
102- cargo doc -p llm-coding-tools -core --no-default-features --features blocking,linux-bubblewrap --document-private-items --no-deps --target ${{ matrix.target }}
103- cargo doc -p llm-coding-tools -models-dev --no-default-features --features blocking --document-private-items --no-deps --target ${{ matrix.target }}
101+ cargo doc -p reloaded-code -bubblewrap --no-default-features --features blocking --document-private-items --no-deps --target ${{ matrix.target }}
102+ cargo doc -p reloaded-code -core --no-default-features --features blocking,linux-bubblewrap --document-private-items --no-deps --target ${{ matrix.target }}
103+ cargo doc -p reloaded-code -models-dev --no-default-features --features blocking --document-private-items --no-deps --target ${{ matrix.target }}
104104 ;;
105105 blocking:false)
106- cargo doc -p llm-coding-tools -core --no-default-features --features blocking --document-private-items --no-deps --target ${{ matrix.target }}
107- cargo doc -p llm-coding-tools -models-dev --no-default-features --features blocking --document-private-items --no-deps --target ${{ matrix.target }}
106+ cargo doc -p reloaded-code -core --no-default-features --features blocking --document-private-items --no-deps --target ${{ matrix.target }}
107+ cargo doc -p reloaded-code -models-dev --no-default-features --features blocking --document-private-items --no-deps --target ${{ matrix.target }}
108108 ;;
109109 esac
110110
@@ -114,26 +114,26 @@ jobs:
114114 run : |
115115 case "${{ matrix.mode }}:${{ matrix.linux_bwrap }}" in
116116 async:true)
117- cargo clippy -p llm-coding-tools -bubblewrap --target ${{ matrix.target }} -- -D warnings
118- cargo clippy -p llm-coding-tools -core --features linux-bubblewrap --target ${{ matrix.target }} -- -D warnings
119- cargo clippy -p llm-coding-tools -agents --target ${{ matrix.target }} -- -D warnings
120- cargo clippy -p llm-coding-tools -serdesai --features linux-bubblewrap --target ${{ matrix.target }} -- -D warnings
121- cargo clippy -p llm-coding-tools -models-dev --target ${{ matrix.target }} -- -D warnings
117+ cargo clippy -p reloaded-code -bubblewrap --target ${{ matrix.target }} -- -D warnings
118+ cargo clippy -p reloaded-code -core --features linux-bubblewrap --target ${{ matrix.target }} -- -D warnings
119+ cargo clippy -p reloaded-code -agents --target ${{ matrix.target }} -- -D warnings
120+ cargo clippy -p reloaded-code -serdesai --features linux-bubblewrap --target ${{ matrix.target }} -- -D warnings
121+ cargo clippy -p reloaded-code -models-dev --target ${{ matrix.target }} -- -D warnings
122122 ;;
123123 async:false)
124- cargo clippy -p llm-coding-tools -core --target ${{ matrix.target }} -- -D warnings
125- cargo clippy -p llm-coding-tools -agents --target ${{ matrix.target }} -- -D warnings
126- cargo clippy -p llm-coding-tools -serdesai --target ${{ matrix.target }} -- -D warnings
127- cargo clippy -p llm-coding-tools -models-dev --target ${{ matrix.target }} -- -D warnings
124+ cargo clippy -p reloaded-code -core --target ${{ matrix.target }} -- -D warnings
125+ cargo clippy -p reloaded-code -agents --target ${{ matrix.target }} -- -D warnings
126+ cargo clippy -p reloaded-code -serdesai --target ${{ matrix.target }} -- -D warnings
127+ cargo clippy -p reloaded-code -models-dev --target ${{ matrix.target }} -- -D warnings
128128 ;;
129129 blocking:true)
130- cargo clippy -p llm-coding-tools -bubblewrap --no-default-features --features blocking --target ${{ matrix.target }} -- -D warnings
131- cargo clippy -p llm-coding-tools -core --no-default-features --features blocking,linux-bubblewrap --target ${{ matrix.target }} -- -D warnings
132- cargo clippy -p llm-coding-tools -models-dev --no-default-features --features blocking --target ${{ matrix.target }} -- -D warnings
130+ cargo clippy -p reloaded-code -bubblewrap --no-default-features --features blocking --target ${{ matrix.target }} -- -D warnings
131+ cargo clippy -p reloaded-code -core --no-default-features --features blocking,linux-bubblewrap --target ${{ matrix.target }} -- -D warnings
132+ cargo clippy -p reloaded-code -models-dev --no-default-features --features blocking --target ${{ matrix.target }} -- -D warnings
133133 ;;
134134 blocking:false)
135- cargo clippy -p llm-coding-tools -core --no-default-features --features blocking --target ${{ matrix.target }} -- -D warnings
136- cargo clippy -p llm-coding-tools -models-dev --no-default-features --features blocking --target ${{ matrix.target }} -- -D warnings
135+ cargo clippy -p reloaded-code -core --no-default-features --features blocking --target ${{ matrix.target }} -- -D warnings
136+ cargo clippy -p reloaded-code -models-dev --no-default-features --features blocking --target ${{ matrix.target }} -- -D warnings
137137 ;;
138138 esac
139139
@@ -171,17 +171,17 @@ jobs:
171171
172172 matrix :
173173 include :
174- - { label: "Core Async", package: llm-coding-tools -core, feature_group: only-explicit-features, features: tokio, prefix_key: core-async-tokio }
175- - { label: "Core Async+Linux", package: llm-coding-tools -core, feature_group: only-explicit-features, features: "tokio,linux-bubblewrap", prefix_key: core-async-tokio-linux-bwrap }
176- - { label: "Serdesai Full", package: llm-coding-tools -serdesai, feature_group: only-explicit-features, features: full, prefix_key: serdesai-async-full }
177- - { label: "Serdesai Full+Linux", package: llm-coding-tools -serdesai, feature_group: only-explicit-features, features: "full,linux-bubblewrap", prefix_key: serdesai-async-full-linux-bwrap }
178- - { label: "Agents+Models", package: "llm-coding-tools- agents,llm-coding-tools -models-dev", feature_group: default-features, features: "", prefix_key: agents-models-dev-default }
179- - { label: "Bubblewrap Base", package: llm-coding-tools -bubblewrap, feature_group: only-explicit-features, features: "", prefix_key: bubblewrap-base }
180- - { label: "Bubblewrap Async", package: llm-coding-tools -bubblewrap, feature_group: only-explicit-features, features: tokio, prefix_key: bubblewrap-tokio }
181- - { label: "Bubblewrap Blocking", package: llm-coding-tools -bubblewrap, feature_group: only-explicit-features, features: blocking, prefix_key: bubblewrap-blocking }
182- - { label: "Core Blocking", package: llm-coding-tools -core, feature_group: only-explicit-features, features: blocking, prefix_key: core-blocking }
183- - { label: "Core Blocking+Linux", package: llm-coding-tools -core, feature_group: only-explicit-features, features: "blocking,linux-bubblewrap", prefix_key: core-blocking-linux-bwrap }
184- - { label: "Models Blocking", package: llm-coding-tools -models-dev, feature_group: only-explicit-features, features: blocking, prefix_key: models-dev-blocking }
174+ - { label: "Core Async", package: reloaded-code -core, feature_group: only-explicit-features, features: tokio, prefix_key: core-async-tokio }
175+ - { label: "Core Async+Linux", package: reloaded-code -core, feature_group: only-explicit-features, features: "tokio,linux-bubblewrap", prefix_key: core-async-tokio-linux-bwrap }
176+ - { label: "Serdesai Full", package: reloaded-code -serdesai, feature_group: only-explicit-features, features: full, prefix_key: serdesai-async-full }
177+ - { label: "Serdesai Full+Linux", package: reloaded-code -serdesai, feature_group: only-explicit-features, features: "full,linux-bubblewrap", prefix_key: serdesai-async-full-linux-bwrap }
178+ - { label: "Agents+Models", package: "reloaded-code- agents,reloaded-code -models-dev", feature_group: default-features, features: "", prefix_key: agents-models-dev-default }
179+ - { label: "Bubblewrap Base", package: reloaded-code -bubblewrap, feature_group: only-explicit-features, features: "", prefix_key: bubblewrap-base }
180+ - { label: "Bubblewrap Async", package: reloaded-code -bubblewrap, feature_group: only-explicit-features, features: tokio, prefix_key: bubblewrap-tokio }
181+ - { label: "Bubblewrap Blocking", package: reloaded-code -bubblewrap, feature_group: only-explicit-features, features: blocking, prefix_key: bubblewrap-blocking }
182+ - { label: "Core Blocking", package: reloaded-code -core, feature_group: only-explicit-features, features: blocking, prefix_key: core-blocking }
183+ - { label: "Core Blocking+Linux", package: reloaded-code -core, feature_group: only-explicit-features, features: "blocking,linux-bubblewrap", prefix_key: core-blocking-linux-bwrap }
184+ - { label: "Models Blocking", package: reloaded-code -models-dev, feature_group: only-explicit-features, features: blocking, prefix_key: models-dev-blocking }
185185
186186 steps :
187187 - name : Run semver check surface
@@ -209,11 +209,11 @@ jobs:
209209 with :
210210 rust-crates-io-token : ${{ secrets.CRATES_IO_TOKEN }}
211211 rust-cargo-project-paths : |
212- src/llm-coding-tools -bubblewrap
213- src/llm-coding-tools -core
214- src/llm-coding-tools -agents
215- src/llm-coding-tools -serdesai
216- src/llm-coding-tools -models-dev
212+ src/reloaded-code -bubblewrap
213+ src/reloaded-code -core
214+ src/reloaded-code -agents
215+ src/reloaded-code -serdesai
216+ src/reloaded-code -models-dev
217217 compression-tool : 7z
218218 artifact-groups-file : .github/artifact-groups.yml
219219 changelog-enabled : " true"
0 commit comments