std_bot_cpp VS rust

Compare std_bot_cpp vs rust and see what are their differences.

rust

Empowering everyone to build reliable and efficient software. (by rust-lang)
Our great sponsors
  • Mergify - Tired of breaking your main and manually rebasing outdated pull requests?
  • InfluxDB - Collect and Analyze Billions of Data Points in Real Time
  • SonarCloud - Analyze your C and C++ projects with just one click.
std_bot_cpp rust
4 2563
9 85,398
- 1.7%
0.0 10.0
6 months ago 3 days ago
C++ Rust
- GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

std_bot_cpp

Posts with mentions or reviews of std_bot_cpp. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-09.

rust

Posts with mentions or reviews of rust. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-17.
  • Rust & MySQL: executing MySQL stored procedures which return multiple result sets using crate sqlx.
    2 projects | dev.to | 17 Sep 2023
  • Rust & MySQL: connect, execute SQL statements and stored procs using crate sqlx.
    3 projects | dev.to | 11 Sep 2023
  • Async Rust Is A Bad Language
    11 projects | news.ycombinator.com | 8 Sep 2023
    See for example https://github.com/rust-lang/rust/issues/63818 and https://github.com/rust-lang/rfcs/pull/3467

    Basically the problem is that async blocks/fns/generators need to create a struct that holds all the local variables within them at any suspension/await/yield point. But local variables can contain references to other local variables, so there are parts of this struct that reference other parts of this struct. This creates two problems:

    - once you create such self-references you can no longer move this struct. But moving a struct is safe, so you need some unsafe code that "promises" you this won't happen. `Pin` is a witness of such promise.

    - in the memory model having an `&mut` reference to this struct means that it is the only way to access it. But this is no longer true for self referential structs, since there are other ways to access its contents, namely the fields corresponding to those local variables that reference other local variables. This is the problem that's still open.

  • ๐Ÿš€ Mastering Integration Testing in Rust with Testcontainers ๐Ÿงช
    2 projects | dev.to | 6 Sep 2023
    Rust Programming Language
  • Rust 1.72.0
    7 projects | news.ycombinator.com | 24 Aug 2023
    AFAIK it's just waiting on the fix in https://github.com/rust-lang/rust/pull/114489 to land, I don't know of any other blockers.
    7 projects | news.ycombinator.com | 24 Aug 2023
    - Async traits: coming soon https://blog.rust-lang.org/inside-rust/2023/05/03/stabilizin..., actively in development (and has been for a while now, please don't confuse "this problem is hard and taking a long time" with "we don't care about this problem" https://github.com/rust-lang/rust/issues?q=is%3Aissue+label%...).

    - async `Drop`: there have been multiple "false-starts", trying to come up with an acceptable design. We don't have a good answer for this at the moment. It is unknown to me how long it might take for us to figure it out.

    - TAITs: same as async traits. It'll likely land after async fn in traits, but it's part of the same design and implementation effort.

    - variadic generics (unlikely they will every be implemented): agree with your assessment, at least in the short to medium term.

    - generic closures: same as above.

    - optional/named parameters: I believe that this feature as such might never exist in rust but think that a combination of structural structs (`struct { bar: usize, baz: usize }`) and/or struct literal inference (`let x: S = _ { bar: 1, baz: 2 }`) and default const values in structs (`struct S { foo: usize = 42, bar: usize }`/`S { bar: 0, .. }`) would be more generally useful and would nicely cater to this use case (`foo(_ { bar: 42, .. }`).

    - anonymous enums: I want this as well, but it interacts poorly with type parameters and automatic type upcasting (if you have `A | B` can you convert it into `A | B | C`? Does it need syntax? What about `Result<(), ()> | Option<()> | Result`? If you have a function that returns that, what does `return Err(())` do?). Type downcasting could be done by forcing a match expression on the value. Whether `A | B` should `impl T` if `A: T, B: T` is an open question. I want to push for a solution here in the coming year.

    7 projects | news.ycombinator.com | 24 Aug 2023
    > from my totally uninformed bystander perspective, there's been a sharp drop in people working on the language and compiler full-time since around Mozilla layoffs, and Rust still hasn't recovered from that

    In terms of number of commits to the rust-lang/rust repo, activity peaked in late 2019/early 2020, whereas the Mozilla layoffs took place in late 2020. Activity since late 2020 has mostly stayed stable, and remains well above where it was at any point prior to 2018: https://github.com/rust-lang/rust/graphs/contributors

    In addition, I know of several former Mozillians who remain employed to work on Rust, including one who heads the Rust team at Amazon.

    As far as the number of contributors to each release, it's currently hovering around an all-time average high (although a handful of past releases have anomalously high peaks): https://thanks.rust-lang.org/

    7 projects | news.ycombinator.com | 24 Aug 2023
    Is it expected that a programming language would have ~9,000 open issues?

    https://github.com/rust-lang/rust/issues

    7 projects | news.ycombinator.com | 24 Aug 2023
  • A Guide to Undefined Behavior in C and C++
    9 projects | news.ycombinator.com | 17 Aug 2023
    The good news is that the Rust project has recently agreed to write a specification, and has a budget to hire an editor for it.

    The less good news is that it's likely to take a long time before anything resembling a complete description gets written.

    You can follow its status at https://github.com/rust-lang/rust/issues/113527

What are some alternatives?

When comparing std_bot_cpp and rust you can also consider the following projects:

carbon-lang - Carbon Language's main repository: documents, design, implementation, and related tools. (NOTE: Carbon Language is experimental; see README)

zig - General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.

Nim - Nim is a statically typed compiled systems programming language. It combines successful concepts from mature languages like Python, Ada and Modula. Its design focuses on efficiency, expressiveness, and elegance (in that order of priority).

Odin - Odin Programming Language

Elixir - Elixir is a dynamic, functional language for building scalable and maintainable applications

rust-analyzer - A Rust compiler front-end for IDEs [Moved to: https://github.com/rust-lang/rust-analyzer]

Rustup - The Rust toolchain installer

go - The Go programming language

mimalloc - mimalloc is a compact general purpose allocator with excellent performance.

scala - Scala 2 compiler and standard library. Bugs at https://github.com/scala/bug; Scala 3 at https://github.com/lampepfl/dotty

spaCy - ๐Ÿ’ซ Industrial-strength Natural Language Processing (NLP) in Python

widevine-l3-guesser