Skip to content

Commit

Permalink
Implement sound map value aliasing (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhoo committed Dec 6, 2020
2 parents 9f3d73d + 416ccef commit 087ba7c
Show file tree
Hide file tree
Showing 22 changed files with 830 additions and 935 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[workspace]
members = ["evmap", "evmap-derive", "left-right"]
members = ["evmap", "left-right"]
12 changes: 0 additions & 12 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,6 @@ stages:
minrust: 1.40.0
codecov_token: $(CODECOV_TOKEN_SECRET)
dir: "evmap"
- job: derive
displayName: "Test evmap-derive"
pool:
vmImage: ubuntu-latest
steps:
- template: install-rust.yml@templates
parameters:
components:
- rust-src
- script: cargo test
displayName: cargo test
workingDirectory: "evmap-derive"
- job: benchmark
displayName: "Check that benchmark compiles"
pool:
Expand Down
29 changes: 0 additions & 29 deletions evmap-derive/Cargo.toml

This file was deleted.

176 changes: 0 additions & 176 deletions evmap-derive/src/lib.rs

This file was deleted.

25 changes: 0 additions & 25 deletions evmap-derive/tests/failing/lib.rs

This file was deleted.

49 changes: 0 additions & 49 deletions evmap-derive/tests/failing/lib.stderr

This file was deleted.

65 changes: 0 additions & 65 deletions evmap-derive/tests/lib.rs

This file was deleted.

1 change: 0 additions & 1 deletion evmap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ eviction = ["indexed", "rand"]
indexmap = { version = "1.1.0", optional = true }
smallvec = "1.0.0"
hashbag = "0.1.2"
bytes = { version = "0.5", optional = true }
rand = { version = "0.7", default-features = false, features = ["alloc"], optional = true }
left-right = { version = "0.9.0", path = "../left-right" }

Expand Down
2 changes: 1 addition & 1 deletion evmap/benchmark/Cargo.lock

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

4 changes: 2 additions & 2 deletions evmap/benchmark/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ impl Backend for sync::Arc<parking_lot::RwLock<HashMap<usize, usize>>> {
}

enum EvHandle {
Read(evmap::ReadHandle<usize, usize>),
Write(sync::Arc<parking_lot::Mutex<(evmap::WriteHandle<usize, usize>, usize, usize)>>),
Read(evmap::handles::ReadHandle<usize, usize>),
Write(sync::Arc<parking_lot::Mutex<(evmap::handles::WriteHandle<usize, usize>, usize, usize)>>),
}

impl Backend for EvHandle {
Expand Down
Loading

0 comments on commit 087ba7c

Please sign in to comment.