idbag

Check-in Differences
Login

Check-in Differences

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Difference From idbag-0.1.0 To idbag-0.1.1

2024-01-23
09:51
Crate maintenance. Remove dev-docs feature. check-in: 25207ac9a2 user: jan tags: idbag-0.1.2, trunk
2023-08-30
17:04
Prepare for publish of 0.1.1. check-in: df0812d15e user: jan tags: idbag-0.1.1, trunk
16:57
Enable link to definitions for docs.rs. check-in: a3dd582034 user: jan tags: trunk
2023-08-29
21:25
Moved from old repo. check-in: ebab7a462c user: jan tags: idbag-0.1.0, trunk
20:00
initial empty check-in check-in: 7207e9f82e user: jan tags: trunk

Changes to Cargo.toml.

1
2
3
4
5
6
7
8
9
10
[package]
name = "idbag"
version = "0.1.0"
edition = "2021"
license = "0BSD"
categories = [ "data-structures" ]
keywords = [ "bag", "identifier" ]
repository = "https://repos.qrnch.tech/pub/idbag"
description = "A bag of u32 identifiers."
rust-version = "1.56"


|







1
2
3
4
5
6
7
8
9
10
[package]
name = "idbag"
version = "0.1.1"
edition = "2021"
license = "0BSD"
categories = [ "data-structures" ]
keywords = [ "bag", "identifier" ]
repository = "https://repos.qrnch.tech/pub/idbag"
description = "A bag of u32 identifiers."
rust-version = "1.56"
19
20
21
22
23
24
25



[features]
dev-docs = []

[dependencies]
hashbrown = { version = "0.14.0" }
parking_lot = { version = "0.12.1" }











>
>
>
19
20
21
22
23
24
25
26
27
28
[features]
dev-docs = []

[dependencies]
hashbrown = { version = "0.14.0" }
parking_lot = { version = "0.12.1" }

[package.metadata.docs.rs]
rustdoc-args = ["--generate-link-to-definition"]

Changes to www/changelog.md.

1
2
3
4
5
6
7
8
9
10







11
12
13
14
15
# Change Log

## [Unreleased]

### Added

### Changed

### Removed









## [0.1.0] - 2023-08-29

- Initial release











>
>
>
>
>
>
>





1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Change Log

## [Unreleased]

### Added

### Changed

### Removed


## [0.1.1] - 2023-08-30

### Changed

- [infrastructure] Request that docs.rs generate links to definitions.


## [0.1.0] - 2023-08-29

- Initial release