Skip to content

Commit bedab83

Browse files
committed
rename to a-mir-formality
formality is taken on crates.io
1 parent 92666ed commit bedab83

File tree

6 files changed

+23
-24
lines changed

6 files changed

+23
-24
lines changed

Cargo.lock

Lines changed: 18 additions & 18 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
@@ -1,5 +1,5 @@
11
[package]
2-
name = "formality"
2+
name = "a-mir-formality"
33
version = "0.1.0"
44
edition = "2021"
55
license = "MIT OR APACHE-2"

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
fn main() -> anyhow::Result<()> {
2-
formality_core::with_tracing_logs(formality::main)
2+
formality_core::with_tracing_logs(a_mir_formality::main)
33
}

tests/associated_type_normalization.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use formality::test_where_clause;
1+
use a_mir_formality::test_where_clause;
22

33
const MIRROR: &str = "[
44
crate core {

tests/coherence_overlap.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![allow(non_snake_case)] // we embed type names into the names for our test functions
22

3-
use formality::test_program_ok;
3+
use a_mir_formality::test_program_ok;
44
use formality_macros::test;
55

66
#[test]

tests/projection.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use formality::test_where_clause;
1+
use a_mir_formality::test_where_clause;
22

33
const NORMALIZE_BASIC: &str = "[
44
crate test {
@@ -260,7 +260,6 @@ const PROJECTION_EQUALITY: &str = "[
260260
}
261261
]";
262262

263-
264263
#[test]
265264
fn projection_equality() {
266265
expect_test::expect![[r#"

0 commit comments

Comments
 (0)