Skip to content

Commit 4616da7

Browse files
committed
Rename chalk-engine-base to chalk-base
1 parent 192bb8b commit 4616da7

34 files changed

+47
-47
lines changed

Cargo.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ salsa = "0.10.0"
2121
serde = "1.0"
2222
serde_derive = "1.0"
2323

24-
chalk-engine-base = { version = "0.10.1-dev", path = "chalk-engine-base" }
24+
chalk-base = { version = "0.10.1-dev", path = "chalk-base" }
2525
chalk-derive = { version = "0.10.1-dev", path = "chalk-derive" }
2626
chalk-engine = { version = "0.10.1-dev", path = "chalk-engine" }
2727
chalk-ir = { version = "0.10.1-dev", path = "chalk-ir" }

chalk-engine-base/Cargo.toml renamed to chalk-base/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "chalk-engine-base"
2+
name = "chalk-base"
33
version = "0.10.1-dev"
44
description = "Base types for Chalk logic engines"
55
license = "Apache-2.0/MIT"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

chalk-derive/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ fn derive_zip(mut s: synstructure::Structure) -> TokenStream {
235235
});
236236

237237
// when the two variants are different
238-
quote!((_, _) => Err(::chalk_engine_base::results::NoSolution)).to_tokens(&mut body);
238+
quote!((_, _) => Err(::chalk_base::results::NoSolution)).to_tokens(&mut body);
239239

240240
s.add_bounds(synstructure::AddBounds::None);
241241
s.bound_impl(
@@ -246,7 +246,7 @@ fn derive_zip(mut s: synstructure::Structure) -> TokenStream {
246246
zipper: &mut Z,
247247
a: &Self,
248248
b: &Self,
249-
) -> ::chalk_engine_base::results::Fallible<()>
249+
) -> ::chalk_base::results::Fallible<()>
250250
where
251251
#interner: 'i,
252252
{
@@ -316,7 +316,7 @@ fn derive_fold(mut s: synstructure::Structure) -> TokenStream {
316316
&self,
317317
folder: &mut dyn ::chalk_ir::fold::Folder < 'i, #interner, #target_interner >,
318318
outer_binder: ::chalk_ir::DebruijnIndex,
319-
) -> ::chalk_engine_base::results::Fallible<Self::Result>
319+
) -> ::chalk_base::results::Fallible<Self::Result>
320320
where
321321
#interner: 'i,
322322
#target_interner: 'i,

chalk-engine/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ default = []
1515
[dependencies]
1616
rustc-hash = { version = "1.1.0" }
1717

18-
chalk-engine-base = { version = "0.10.1-dev", path = "../chalk-engine-base" }
18+
chalk-base = { version = "0.10.1-dev", path = "../chalk-base" }

0 commit comments

Comments
 (0)