repo/extra/rust
Dylan Araps 39d519f9a3
rust: Fix cargo SSL errors.
Cargo uses its own vendored libcurl which it statically links
against. This patches the build configuration to set
CURL_CA_BUNDLE and CURL_CA_PATH.

I am still unsure as to why this broke, why this only affects
KISS with OpenSSL 3.0.0, etc. Will see if the next rust release
improves this else will open a bug report upstream.

Closes #339
2021-10-08 08:21:08 +03:00
..
patches rust: Fix cargo SSL errors. 2021-10-08 08:21:08 +03:00
build rust: Fix cargo SSL errors. 2021-10-08 08:21:08 +03:00
checksums rust: Fix cargo SSL errors. 2021-10-08 08:21:08 +03:00
depends rust: minor changes 2021-09-02 12:17:51 +03:00
README repo: check-in readmes 2021-08-26 07:22:10 +03:00
sources rust: Fix cargo SSL errors. 2021-10-08 08:21:08 +03:00
version rust: Fix cargo SSL errors. 2021-10-08 08:21:08 +03:00

rust
________________________________________________________________________________

Rust is a multi-paradigm, high-level, general-purpose programming language
designed for performance and safety, especially safe concurrency. Rust is
syntactically similar to C++, but can guarantee memory safety by using a borrow
checker to validate references. Rust achieves memory safety without garbage
collection, and reference counting is optional.

Rust was originally designed by Graydon Hoare at Mozilla Research, with
contributions from Dave Herman, Brendan Eich, and others. The designers refined
the language while writing the Servo experimental browser engine, and the Rust
compiler. [0]

Upstream: https://www.rust-lang.org/


[000] Index
________________________________________________________________________________

* Installation ........................................................... [001]
* Usage .................................................................. [002]
* References ............................................................. [003]


[001] Installation
________________________________________________________________________________

+------------------------------------------------------------------------------+
|                                                                              |
|  $ kiss b rust                                                               |
|                                                                              |
+------------------------------------------------------------------------------+


[002] Usage
________________________________________________________________________________

Refer to the manual pages and command help output.


[003] References
________________________________________________________________________________

[0] https://en.wikipedia.org/wiki/Rust_(programming_language)