Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate indexed module into new indexical crate #81

Merged
merged 4 commits into from
Sep 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ name: Tests
on:
push:
branches:
- "**"
- master
tags-ignore:
- "v*"
pull_request:
branches:
- master

jobs:
test:
Expand Down
3 changes: 2 additions & 1 deletion crates/flowistry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ log = "0.4"
fluid-let = "1.0"
cfg-if = "1.0"
serde = {version = "1", features = ["derive"]}
rustc_utils = "0.7.0-nightly-2023-08-25"
rustc_utils = {version = "0.7.1-nightly-2023-08-25", features = ["indexical"]}
indexical = { version = "0.2.2", default-features = false, features = ["rustc"] }

# For local debugging
html-escape = {version = "0.2", optional = true}
Expand Down
4 changes: 2 additions & 2 deletions crates/flowistry/examples/example.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ extern crate rustc_span;

use std::process::Command;

use flowistry::{indexed::impls::LocationOrArg, infoflow::Direction};
use flowistry::infoflow::Direction;
use rustc_borrowck::consumers::BodyWithBorrowckFacts;
use rustc_hir::{BodyId, ItemKind};
use rustc_middle::{
Expand All @@ -33,7 +33,7 @@ use rustc_middle::{
};
use rustc_span::Span;
use rustc_utils::{
mir::borrowck_facts,
mir::{borrowck_facts, location_or_arg::LocationOrArg},
source_map::spanner::{EnclosingHirSpans, Spanner},
BodyExt, PlaceExt, SpanExt,
};
Expand Down
45 changes: 0 additions & 45 deletions crates/flowistry/src/indexed/impls.rs

This file was deleted.

Loading
Loading