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

Implement sound map value aliasing #83

Merged
merged 1 commit into from
Dec 6, 2020
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
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