Skip to content

Commit bbf355c

Browse files
authored
Merge pull request #1956 from palfrey/fix-build
Fix build
2 parents 30fe32f + df7ca39 commit bbf355c

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,6 @@ If you want to contribute, please read [this](CONTRIBUTING.md).
121121

122122
## Applications
123123

124-
See also [Rust - Production](https://www.rust-lang.org/production) organizations running Rust in production.
125-
126124
* [alacritty](https://github.com/alacritty/alacritty) - A cross-platform, GPU enhanced terminal emulator
127125
* [Arti](https://gitlab.torproject.org/tpo/core/arti) - An implementation of Tor. (So far, it's a not-very-complete client. But watch this space!) [![Crates.io](https://img.shields.io/crates/v/arti.svg)](https://crates.io/crates/arti)
128126
* [asm-cli-rust](https://github.com/cch123/asm-cli-rust) - An interactive assembly shell.
@@ -225,7 +223,7 @@ See also [Rust - Production](https://www.rust-lang.org/production) organizations
225223
* [Subspace](https://github.com/autonomys/subspace) - The first layer-one blockchain that can fully resolve the blockchain trilemma by simultaneously achieving scalability, security, and decentralization.
226224
* [Sui](https://github.com/MystenLabs/sui) - A next-generation smart contract platform with high throughput, low latency, and an asset-oriented programming model powered by the Move programming language.
227225
* [svm-rs](https://github.com/alloy-rs/svm-rs) - Solidity-Compiler Version Manager.
228-
* [tendermint-rs](https://github.com/informalsystems/tendermint-rs) - Tendermint blockchain data structures and clients
226+
* [tendermint-rs](https://github.com/cometbft/tendermint-rs) - Tendermint blockchain data structures and clients
229227
* [wagyu](https://github.com/howardwu/wagyu) [[wagyu](https://crates.io/crates/wagyu)] - Library for generating cryptocurrency wallets
230228
* [zcash](https://github.com/zcash/zcash) - Zcash is an implementation of the "Zerocash" protocol.
231229

src/main.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@ fn override_stars(level: u32, text: &str) -> Option<u32> {
4141
lazy_static! {
4242
// We don't explicitly check these, because they just bug out in GitHub. We're _hoping_ they don't go away!
4343
static ref ASSUME_WORKS: Vec<String> = vec![
44-
"https://www.reddit.com/r/rust/".to_string()
44+
"https://www.reddit.com/r/rust/".to_string(),
45+
"https://opcfoundation.org/about/opc-technologies/opc-ua/".to_string(),
46+
"https://arangodb.com".to_string(),
47+
"https://git.sr.ht/~lessa/pepper".to_string()
4548
];
4649
// Overrides for popularity count, each needs a good reason (i.e. downloads/stars we don't support automatic counting of)
4750
// Each is a URL that's "enough" for an item to pass the popularity checks

0 commit comments

Comments
 (0)