Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From swctx-0.3.0 To trunk
|
2024-09-20
| ||
| 16:04 | Move clippy settings into Cargo.toml. Leaf check-in: 9fc51298cf user: jan tags: trunk | |
|
2024-09-09
| ||
| 23:16 | Do not publish bacon.toml. check-in: 2d2157cd26 user: jan tags: trunk | |
| 21:31 | Change log fixup. check-in: 72448a9f79 user: jan tags: trunk | |
| 21:25 | Release maintenance. check-in: 696d6ef1dc user: jan tags: swctx-0.3.0, trunk | |
| 19:58 | Doc style fixups. check-in: 65005083ab user: jan tags: trunk | |
Changes to Cargo.toml.
| ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 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 36 37 38 39 | + + + + + + + |
description = "One-shot channel with some special semantics."
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]
parking_lot = { version = "0.12.3" }
[dev-dependencies]
tokio = { version = "1.40.0", features = ["rt-multi-thread"] }
[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 }
|
Changes to bacon.toml.
1 2 3 4 5 6 7 8 9 10 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | - + + | # This is a configuration file for the bacon tool # # Bacon repository: https://github.com/Canop/bacon # Complete help on configuration: https://dystroy.org/bacon/config/ # You can also check bacon's own bacon.toml file # as an example: https://github.com/Canop/bacon/blob/main/bacon.toml # For information about clippy lints, see: # https://github.com/rust-lang/rust-clippy/blob/master/README.md |
| ︙ | |||
41 42 43 44 45 46 47 | 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | - - - - - - - - - - - - - - - - - - - - - - - - - |
# need_stdout = false
[jobs.clippy-all]
command = [
"cargo", "clippy",
"--all-targets",
"--color", "always",
]
|
| ︙ |
Changes to www/changelog.md.
| ︙ | |||
10 11 12 13 14 15 16 | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | - + | ### Changed ### Removed --- |
| ︙ |