Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From limq-0.1.0
To limq-0.1.1
2024-09-12
| | |
21:36 |
|
check-in: 3c006f2a0c user: jan tags: trunk
|
21:27 |
|
check-in: 457e09bb70 user: jan tags: limq-0.1.1, trunk
|
21:25 |
|
check-in: efca5d365c user: jan tags: trunk
|
2024-04-09
| | |
22:40 |
|
check-in: 98dd727dfd user: jan tags: trunk
|
21:18 |
|
check-in: ff1f928305 user: jan tags: limq-0.1.0, trunk
|
20:26 |
|
check-in: 0974430cf5 user: jan tags: trunk
|
| | |
Added .efiles.
|
1
2
3
4
5
|
+
+
+
+
+
|
Cargo.toml
README.md
www/index.md
www/changelog.md
src/lib.rs
|
| | | |
Added .fossil-settings/ignore-glob.
|
1
2
3
|
+
+
+
|
.*.swp
Cargo.lock
target
|
| |
Changes to Cargo.toml.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
-
+
+
+
+
+
+
+
+
|
[package]
name = "limq"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "0BSD"
# https://crates.io/category_slugs
categories = [ "data-structures" ]
keywords = [ "queue", "bounded" ]
repository = "https://repos.qrnch.tech/pub/limq"
description = "Queue with optional maximum number of elements constraint"
rust-version = "1.56"
exclude = [
".fossil-settings",
".efiles",
".fslckout",
"www",
"bacon.toml",
"rustfmt.toml"
]
# https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section
[badges]
maintenance = { status = "passively-maintained" }
[dependencies]
[package.metadata.docs.rs]
rustdoc-args = ["--generate-link-to-definition"]
[lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
|
Added bacon.toml.