Skip to content

Commit

Permalink
Merge pull request #10 from dapper91/dev
Browse files Browse the repository at this point in the history
- dependencies versions updated
- bin and examples required-features fixed
  • Loading branch information
dapper91 authored Feb 25, 2023
2 parents 2362cad + 22b8747 commit 51d9b65
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ext-sort"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
license = "Unlicense"
description = "rust external sort algorithm implementation"
Expand All @@ -14,30 +14,30 @@ categories = ["algorithms"]
keywords = ["algorithms", "sort", "sorting", "external-sort", "external"]

[dependencies]
bytesize = { version = "^1.1", optional = true }
clap = { version = "^3.0", features = ["derive"], optional = true }
deepsize = { version = "^0.2", optional = true }
env_logger = { version = "^0.9", optional = true}
log = "^0.4"
rayon = "^1.5"
rmp-serde = "^0.15"
serde = { version = "^1.0", features = ["derive"] }
tempfile = "^3.2"
bytesize = { version = "1.1.0", optional = true }
clap = { version = "3.0.0", features = ["derive"], optional = true }
deepsize = { version = "0.2.0", optional = true }
env_logger = { version = "0.9.0", optional = true}
log = "0.4.8"
rayon = "1.5.0"
rmp-serde = "0.15.0"
serde = { version = "1.0.120", features = ["derive"] }
tempfile = "3.2.0"

[dev-dependencies]
rstest = "^0.12"
rand = "^0.8"
rstest = "0.12.0"
rand = "0.8.0"

[features]
memory-limit = ["deepsize"]

[[bin]]
name = "ext-sort"
required-features = ["bytesize", "clap", "env_logger"]
required-features = ["bytesize", "clap", "env_logger", "memory-limit"]

[[example]]
name = "quickstart"
required-features = ["bytesize", "env_logger"]
required-features = ["bytesize", "env_logger", "memory-limit"]

[[example]]
name = "custom_serializer"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ Activate `memory-limit` feature of the ext-sort crate on Cargo.toml:

```toml
[dependencies]
ext-sort = { version = "^0.1.2", features = ["memory-limit"] }
ext-sort = { version = "^0.1.3", features = ["memory-limit"] }
```

``` rust
```rust
use std::fs;
use std::io::{self, prelude::*};
use std::path;
Expand Down

0 comments on commit 51d9b65

Please sign in to comment.