Questions tagged [rust]
Rust is a statically typed programming language based on C and C++.
17 questions
1 vote
1 answer
25 views
Rust macro to derive a struct for an enum where each field corresponds to a variant and the field data corresponds to the variant data
I would like to have a derive macro like VariantsStruct from variants-struct but which for #[derive(VariantsStruct)] enum Hello { World, There(i32) } would produce struct HelloVariants { ...
1 vote
0 answers
24 views
Simple time to live cache in Rust?
I'm looking for a tech that allows me to keep certain types of data for a set amount of time. Meaning it's not really but almost like a cache. They should be guaranteed to be there for their lifetime, ...
1 vote
1 answer
1k views
Best IDE or editor for Rust
I'm beginning to write Rust code (mainly for my Bachelor project) so I was wondering what should I use to write it. Using Windows by the way. Options I found are: Visual Studio Code Intellij IDEA ...
1 vote
0 answers
32 views
Rust library for in memory times series data cache
I am looking for an open source Rust library for an in memory time series data cache. I am aware of time series data servers, such as InfluxDB and Redis Time Series. But I am looking for code that ...
2 votes
0 answers
33 views
Rust library to serialize OWL in Manchester Syntax
I am writing an RDF browser in Rust based on the Sophia library which works great for knowledge bases, but ontology descriptions written in OWL are displayed as multiple RDF triples, which is not ...
1 vote
0 answers
16 views
is there some profiling and coverage library for rust?
This question is related to a common criticism of the model for sharing computing resources on blockchains (often seen on economics), based on accounting of participation of various users on the ...
0 votes
1 answer
58 views
Rust library for rank and select support on succinct int vectors, e.g. wavelet trees
Is there a Rust library for Wavelet Trees or any other data structure that supports fast and memory-efficient rank and select on succinct integer vectors? succinct, succint_rs and rsdict only seem to ...
2 votes
1 answer
104 views
RDF HDT (Header, Dictionary, Triples) library in Rust
I would like to load RDF HDT (Header, Dictionary, Triples) files in a Rust application but haven't found any library that supports this. Before doing it myself or asking others to add it to their RDF ...
0 votes
0 answers
56 views
Rust framework without "object cannot be sent between threads safely"
Is there (preferably asynchronous) Rust web framework without being prone to errors like object/future cannot be sent between threads safely ?
1 vote
1 answer
81 views
Lossless data compression library with support for flushing, low-resource decompression, high density
I'm looking for a library (or algorithm) with public description and reference source code (in any language with a mainstream compiler targeting 32bit embedded CPUs like Cortex-M0), doing lossless ...
1 vote
0 answers
28 views
Which Platform/Language to use for heavy computing/ML tasks?
We have built an MVP in Python Data ecosystem, but the performance is much less than desired. Our approach: multiprocessing module for task parallelisation (which is awkwardly done in Python - pickle/...
1 vote
1 answer
565 views
What free static analysis tools are available for Rust?
My need is to understand an existing Rust codebase. I have the ability to see the module/trait/function hierarchy using rustdoc, and to quickly jump to refs and defs using VS Codium (privacy ...
0 votes
0 answers
18 views
Bitcoin programming on Raspberry Pi 4/Raspbian
I want to setup a full bitcoin node on a Raspberry Pi 4 with Raspbian and make my own local requests in C/C++ (no client connection to a remote node). What would be the best library to do that ? ...
2 votes
0 answers
60 views
Proxy Resolver library in Rust
Currently, are there any stable proxy library written in Rust? There are some alternatives in Java like proxy-vole which has the following abilities: Retrieve proxy pac script from any operating ...
1 vote
2 answers
512 views
Gratis Rust IDE for Windows
I've recently started learning Rust. Rust is a relatively new language, the first stable release having only been out in May 2015. I've looked online and for the most part, the only articles I've ...