Skip to content

Commit

Permalink
Rename ra_hir_ty -> hir_ty
Browse files Browse the repository at this point in the history
  • Loading branch information
matklad committed Aug 13, 2020
1 parent 50f8c1e commit 6a77ec7
Show file tree
Hide file tree
Showing 40 changed files with 44 additions and 47 deletions.
60 changes: 30 additions & 30 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 10 additions & 13 deletions crates/ra_hir_ty/Cargo.toml → crates/hir_ty/Cargo.toml
@@ -1,9 +1,9 @@
[package]
edition = "2018"
name = "ra_hir_ty"
version = "0.1.0"
authors = ["rust-analyzer developers"]
name = "hir_ty"
version = "0.0.0"
license = "MIT OR Apache-2.0"
authors = ["rust-analyzer developers"]
edition = "2018"

[lib]
doctest = false
Expand All @@ -15,9 +15,12 @@ smallvec = "1.2.0"
ena = "0.14.0"
log = "0.4.8"
rustc-hash = "1.1.0"
scoped-tls = "1"
chalk-solve = { version = "0.21.0" }
chalk-ir = { version = "0.21.0" }
chalk-recursive = { version = "0.21.0" }

stdx = { path = "../stdx" }

hir_def = { path = "../hir_def" }
hir_expand = { path = "../hir_expand" }
arena = { path = "../arena" }
Expand All @@ -26,15 +29,9 @@ profile = { path = "../profile" }
syntax = { path = "../syntax" }
test_utils = { path = "../test_utils" }

scoped-tls = "1"

chalk-solve = { version = "0.21.0" }
chalk-ir = { version = "0.21.0" }
chalk-recursive = { version = "0.21.0" }

[dev-dependencies]
expect = { path = "../expect" }

tracing = "0.1"
tracing-subscriber = { version = "0.2", default-features = false, features = ["env-filter", "registry"] }
tracing-tree = { version = "0.1.4" }

expect = { path = "../expect" }
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Expand Up @@ -35,7 +35,7 @@ use crate::{

// These tests compare the inference results for all expressions in a file
// against snapshots of the expected results using expect. Use
// `env UPDATE_EXPECT=1 cargo test -p ra_hir_ty` to update the snapshots.
// `env UPDATE_EXPECT=1 cargo test -p hir_ty` to update the snapshots.

fn setup_tracing() -> tracing::subscriber::DefaultGuard {
use tracing_subscriber::{layer::SubscriberExt, EnvFilter, Registry};
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion crates/ra_hir/Cargo.toml
Expand Up @@ -22,4 +22,4 @@ base_db = { path = "../base_db" }
profile = { path = "../profile" }
hir_expand = { path = "../hir_expand" }
hir_def = { path = "../hir_def" }
hir_ty = { path = "../ra_hir_ty", package = "ra_hir_ty" }
hir_ty = { path = "../hir_ty" }
2 changes: 1 addition & 1 deletion crates/rust-analyzer/Cargo.toml
Expand Up @@ -51,7 +51,7 @@ ra_ide_db = { path = "../ra_ide_db" }
ra_ssr = { path = "../ra_ssr" }
hir = { path = "../ra_hir", package = "ra_hir" }
hir_def = { path = "../hir_def" }
hir_ty = { path = "../ra_hir_ty", package = "ra_hir_ty" }
hir_ty = { path = "../hir_ty" }
proc_macro_srv = { path = "../proc_macro_srv" }

[target.'cfg(windows)'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion xtask/tests/tidy.rs
Expand Up @@ -201,7 +201,7 @@ impl TidyDocs {
"project_model",
"syntax",
"tt",
"ra_hir_ty",
"hir_ty",
];

let mut has_fixmes =
Expand Down

0 comments on commit 6a77ec7

Please sign in to comment.