Coder Social home page Coder Social logo

tlrc's Introduction

tlrc

A tldr client written in Rust.

CI release crates.io license
github downloads matrix

screenshot

Installation

Packaging status

Linux/macOS using Homebrew

Install tlrc with Homebrew:

brew install tlrc

Linux/macOS using Nix

Install tlrc from nixpkgs.

Arch Linux

Install tlrc (from source) or tlrc-bin (prebuilt) from the AUR.

openSUSE

Install tlrc with Zypper:

zypper install tlrc

Windows using Winget

Install tlrc with Winget:

winget install tldr-pages.tlrc

Windows using Scoop

Install tlrc with Scoop:

scoop install tlrc

macOS using MacPorts

Install tlrc with MacPorts:

port install tlrc

NetBSD

Install tlrc with pkgin:

pkgin install tlrc

From crates.io

To build tlrc from a source tarball, run:

cargo install tlrc

Note

Shell completion files and the man page will not be installed that way.

From GitHub Releases

You can find prebuilt binaries here.

Usage

See man tldr or the online manpage. For a brief description, you can also run:

tldr --help

Configuration

Tlrc can be customized with a TOML configuration file. To get the default path for your system, run:

tldr --config-path

To generate a default config file, run:

tldr --gen-config > "$(tldr --config-path)"

or copy the below example.

Configuration options

[cache]
# Override the cache directory.
dir = "/path/to/cache"
# Override the base URL used for downloading tldr pages.
# The mirror must provide files with the same names as the official tldr pages repository:
# mirror/tldr.sha256sums            must point to the SHA256 checksums of all assets
# mirror/tldr-pages.LANGUAGE.zip    must point to a zip archive that contains platform directories with pages in LANGUAGE
mirror = "https://github.com/tldr-pages/tldr/releases/latest/download"
# Automatically update the cache if it's older than max_age hours.
auto_update = true
max_age = 336 # 336 hours = 2 weeks
# Specify a list of desired page languages. If it's empty, languages specified in
# the LANG and LANGUAGE environment variables are downloaded.
# English is implied and will always be downloaded.
# You can see a list of language codes here: https://github.com/tldr-pages/tldr
# Example: ["de", "pl"]
languages = []

[output]
# Show the title in the rendered page.
show_title = true
# Show the platform name ('common', 'linux', etc.) in the title.
platform_title = false
# Prefix descriptions of examples with hyphens.
show_hyphens = false
# Use a custom string instead of a hyphen.
example_prefix = "- "
# Strip empty lines from output.
compact = false
# Print pages in raw markdown.
raw_markdown = false

# Number of spaces to put before each line of the page.
[indent]
# Command name.
title = 2
# Command description.
description = 2
# Descriptions of examples.
bullet = 2
# Example command invocations.
example = 4

# Style for the title of the page (command name).
[style.title]
# Fixed colors:       "black", "red", "green", "yellow", "blue", "magenta", "cyan", "white", "default"
# 256color ANSI code: { color256 = 50 }
# RGB:                { rgb = [0, 255, 255] }
color = "magenta"
background = "default"
bold = true
underline = false
italic = false
dim = false
strikethrough = false

# Style for the description of the page.
[style.description]
color = "magenta"
background = "default"
bold = false
underline = false
italic = false
dim = false
strikethrough = false

# Style for descriptions of examples.
[style.bullet]
color = "green"
background = "default"
bold = false
underline = false
italic = false
dim = false
strikethrough = false

# Style for command examples.
[style.example]
color = "cyan"
background = "default"
bold = false
underline = false
italic = false
dim = false
strikethrough = false

# Style for URLs inside the description.
[style.url]
color = "red"
background = "default"
bold = false
underline = false
italic = true
dim = false
strikethrough = false

# Style for text surrounded by backticks (`).
[style.inline_code]
color = "yellow"
background = "default"
bold = false
underline = false
italic = true
dim = false
strikethrough = false

# Style for placeholders inside command examples.
[style.placeholder]
color = "red"
background = "default"
bold = false
underline = false
italic = true
dim = false
strikethrough = false

tlrc's People

Contributors

acuteenvy avatar bekker avatar dependabot[bot] avatar kbdharun avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

tlrc's Issues

tlrc stops working if `languages = []` is set in the config

After update to 1.9.0 tlrc stopped working for me with error: page not found. Try running 'tldr --update'.
Update didn't work, and I tried to clean cache to force update, and after that things become strange:

> tldr --clean-cache
info: cleaning the cache directory...
> tldr --update
info: downloading 'tldr.sha256sums'... 3.27 KiB
info: there is nothing to do. Run 'tldr --clean-cache' if you want to force an update.

It thinks that there is nothing to do on clean/empty cache and did not download any pages.

> tldr tldr
info: cache is empty, downloading...
info: downloading 'tldr.sha256sums'... 3.27 KiB
info: there is nothing to do. Run 'tldr --clean-cache' if you want to force an update.
error: No such file or directory (os error 2)

After some investigation, I made it work with manually downloaded cache and explicitly set language via command line argument.

> tldr --language en tldr
  Display simple help pages for command-line tools from the tldr-pages project.
  ...

My setup:
MacBook pro m1
MacOS Ventura 13.6.3
fish shell
tlrc 1.9.0 via homebrew

ENV:

LANG=ru_RU.UTF-8
LANGUAGE=

config.toml:

[cache]
dir = "/Users/dvkubatkin/Library/Caches/tlrc"
auto_update = true
max_age = 336
languages = []

Add support for shell autocompletion for pages

Currently, in tlrc v1.8.0 installed via brew, the autocompletion doesn't seem to support displaying page possibilities. i.e. If I type tldr aws and press tab, the output should show all the possibilities for aws subcommands.

We support this feature in all our official clients. It would be great if tlrc supports it too.

Ways to implement it

Request: release the package in apt

What the title says. Is there any plans to bring tlrc into apt? So that ubuntu/debian users can install the software very easily something like this:

sudo apt install tlrc

Just to provide a little more smooth user experience 😅

Feature request: Add relative paths for cache dir

On MacOS with tlrc installed via homebrew.

Neither of these work:

[cache]
dir = "~/.cache/tldr"
# OR
dir = "$HOME/.cache/tldr"

It just dumps a new cache directory into the working directory where the tldr command was used with the path specified in the dir field.

However, using an absolute path seems to work:

[cache]
dir = "/Users/<my_username>/.cache/tldr"

Would be nice to support relative paths for multi device usage.

Download error when using a SOCKS proxy

i install tlrc by homebrew on macos. When i input tldr fd , it show

info: cache is empty, downloading...
info: downloading 'tldr.sha256sums'... error: https://github.com/tldr-pages/tldr/releases/latest/download/tldr.sha256sums: Connection Failed: Connect error: SOCKS feature disabled.

how can i fix it?

connection failed due to UnknownIssuer

Silly question, do we know why it fails to download from github, but meantime can cUrl? Obviously im behind corp firewall.

tldr nvm

info: cache is empty, downloading...
info: downloading 'tldr.sha256sums'... FAILED
error: https://github.com/tldr-pages/tldr/releases/latest/download/tldr.sha256sums: **Connection Failed: tls connection init failed: invalid peer certificate: UnknownIssuer**

curl -I https://github.com/tldr-pages/tldr/releases/latest/download/tldr.sha256sums

HTTP/1.1 302 Found
Server: GitHub.com
Date: Mon, 06 May 2024 23:49:11 GMT
Content-Type: text/html; charset=utf-8
Vary: X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, Accept-Encoding, Accept, X-Requested-With
Location: https://github.com/tldr-pages/tldr/releases/download/v2.2/tldr.sha256sums
Cache-Control: no-cache
Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
X-Frame-Options: deny
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Referrer-Policy: no-referrer-when-downgrade
Content-Security-Policy: default-src 'none'; base-uri 'self'; child-src github.com/assets-cdn/worker/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com api.githubcopilot.com objects-origin.githubusercontent.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.com/assets-cdn/worker/ gist.github.com/assets-cdn/worker/
Set-Cookie: _gh_sess=1Ojsm6%2Fl9GnPMkI1RxozkfSHPo%2F6OBGcv%2BT9sf3O6rarGnb%2B%2BRcC1EpJV5dvLmoyG4w5m%2FmZd6UcdASShynuHW5zqe%2BBxLzXjEbK%2BlwplQbRuQSZW5hTbredtxuJ5az0rMZchRZ5Ot%2BxjUAEMWg4qa0u1KmDDUpZhsXEeehq6khIVbaSLqdkDD7XZKF7VKmmMCbdb1HhNtZdhz%2BqJtlurShHA1LTe6tqaJUDN3wINqFvUPOXDD%2BY6rlVgQ%2B76KhXPIpJ%2B%2FL474uZENG5Q5nfsw%3D%3D--s%2BgR4UZY7suTEnjA--TS9Vk%2FQzf%2FwykXOB5PblWA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax
Set-Cookie: _octo=GH1.1.79770719.1715039351; Path=/; Domain=github.com; Expires=Tue, 06 May 2025 23:49:11 GMT; Secure; SameSite=Lax
Set-Cookie: logged_in=no; Path=/; Domain=github.com; Expires=Tue, 06 May 2025 23:49:11 GMT; HttpOnly; Secure; SameSite=Lax
Content-Length: 0
X-GitHub-Request-Id: 47F2:1FBACE:1DC27E3:2127566:66396C77

Compilation error on Arch Linux

I tried building https://aur.archlinux.org/packages/tlrc on ArchLinux both choosing rust 1.76.0 or rustup 1.76.0.

I tried with rust 1.75.0 from asdf.

I tried in a minimalist nspawn environment to be sure it was not something messing up from my system or PATH.

I tried building from last git commit instead of release 1.80.0.

In all cases I ended up with that error:

...
   Compiling toml v0.8.8
error: linking with `cc` failed: exit status: 1
  |
  = note: LC_ALL="C" PATH="/usr/lib64/rustlib/x86_64-unknown-linux-gnu/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl" VSLANG="1033" "cc" "-m64" "/tmp/rustcsp7KkM/symbols.o" "/build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o" "-Wl,--as-needed" "-L" "/build/tlrc/src/tlrc-1.8.0/target/release/deps" "-L" "/build/tlrc/src/tlrc-1.8.0/target/release/build/ring-25c75424ae8ad8b7/out" "-L" "/usr/lib64/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/tmp/rustcsp7KkM/libring-cb75d4dbccddaabf.rlib" "/usr/lib64/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-dc359f8c64813cd3.rlib" "-Wl,-Bdynamic" "-lgcc_s" "-lutil" "-lrt" "-lpthread" "-lm" "-ldl" "-lc" "-Wl,--eh-frame-hdr" "-Wl,-z,noexecstack" "-L" "/usr/lib64/rustlib/x86_64-unknown-linux-gnu/lib" "-o" "/build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab" "-Wl,--gc-sections" "-pie" "-Wl,-z,relro,-z,now" "-Wl,-O1" "-Wl,--strip-all" "-nodefaultlibs"
  = note: /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::aead::aes_gcm::aes_gcm_seal':
          tldr.88873424f1eaf6df-cgu.0:(.text._ZN4ring4aead7aes_gcm12aes_gcm_seal17h2d3249ed9497a571E+0x14b): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::cpu::intel::Feature::available':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/cpu/intel.rs:34:(.text._ZN4ring4aead7aes_gcm12aes_gcm_seal17h2d3249ed9497a571E+0x28c): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::aead::aes::encrypt_block_':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/aead/aes.rs:77:(.text._ZN4ring4aead7aes_gcm12aes_gcm_seal17h2d3249ed9497a571E+0x311): undefined reference to `ring_core_0_17_6_aes_nohw_encrypt'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::cpu::intel::Feature::available':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/cpu/intel.rs:34:(.text._ZN4ring4aead7aes_gcm12aes_gcm_open17he5c7da21e52d1aa5E+0x158): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/cpu/intel.rs:34:(.text._ZN4ring4aead7aes_gcm12aes_gcm_open17he5c7da21e52d1aa5E+0x349): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::aead::aes::encrypt_block_':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/aead/aes.rs:77:(.text._ZN4ring4aead7aes_gcm12aes_gcm_open17he5c7da21e52d1aa5E+0x3e0): undefined reference to `ring_core_0_17_6_aes_nohw_encrypt'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::cpu::intel::Feature::available':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/cpu/intel.rs:34:(.text._ZN4ring4aead3gcm7Context12update_block17h810e8e26445be466E+0x1a): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/cpu/intel.rs:34:(.text._ZN4ring4aead7aes_gcm6finish17h3b43676c1f6311d9E+0x12d): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::aead::aes::encrypt_block_':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/aead/aes.rs:77:(.text._ZN4ring4aead7aes_gcm6finish17h3b43676c1f6311d9E+0x1a6): undefined reference to `ring_core_0_17_6_aes_nohw_encrypt'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::cpu::intel::Feature::available':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/cpu/intel.rs:34:(.text._ZN4ring4aead3gcm7Context13update_blocks17h9eec3b7131584c38E+0x17): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/cpu/intel.rs:34:(.text._ZN4ring4aead3aes3Key20ctr32_encrypt_within17h4bf68921339a1a22E+0x2e): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::aead::aes::ctr32_encrypt_blocks_':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/aead/aes.rs:123:(.text._ZN4ring4aead3aes3Key20ctr32_encrypt_within17h4bf68921339a1a22E+0xe7): undefined reference to `ring_core_0_17_6_aes_nohw_ctr32_encrypt_blocks'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::cpu::intel::Feature::available':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/cpu/intel.rs:34:(.text._ZN4ring4aead7aes_gcm4init17hf5f8f347caf1fd17E+0xba): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::aead::aes::set_encrypt_key':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/aead/aes.rs:53:(.text._ZN4ring4aead7aes_gcm4init17hf5f8f347caf1fd17E+0x103): undefined reference to `ring_core_0_17_6_aes_nohw_set_encrypt_key'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::aead::aes::encrypt_block_':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/aead/aes.rs:77:(.text._ZN4ring4aead7aes_gcm4init17hf5f8f347caf1fd17E+0x1c3): undefined reference to `ring_core_0_17_6_aes_nohw_encrypt'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::cpu::intel::Feature::available':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/cpu/intel.rs:34:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_seal17h4770abac335eacbbE+0x34): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::aead::poly1305::Context::from_key':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/aead/poly1305.rs:93:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_seal17h4770abac335eacbbE+0xdc): undefined reference to `ring_core_0_17_6_CRYPTO_poly1305_init'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::aead::poly1305::Context::update':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/aead/poly1305.rs:104:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_seal17h4770abac335eacbbE+0x10c): undefined reference to `ring_core_0_17_6_CRYPTO_poly1305_update'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/aead/poly1305.rs:104:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_seal17h4770abac335eacbbE+0x132): undefined reference to `ring_core_0_17_6_CRYPTO_poly1305_update'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/aead/poly1305.rs:104:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_seal17h4770abac335eacbbE+0x16c): undefined reference to `ring_core_0_17_6_CRYPTO_poly1305_update'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/aead/poly1305.rs:104:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_seal17h4770abac335eacbbE+0x192): undefined reference to `ring_core_0_17_6_CRYPTO_poly1305_update'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/aead/poly1305.rs:104:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_seal17h4770abac335eacbbE+0x244): undefined reference to `ring_core_0_17_6_CRYPTO_poly1305_update'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::aead::poly1305::Context::finish':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/aead/poly1305.rs:113:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_seal17h4770abac335eacbbE+0x26f): undefined reference to `ring_core_0_17_6_CRYPTO_poly1305_finish'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::cpu::intel::Feature::available':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/cpu/intel.rs:34:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_open17h00052ce1cf169fb9E+0x38): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::aead::poly1305::Context::from_key':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/aead/poly1305.rs:93:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_open17h00052ce1cf169fb9E+0xd4): undefined reference to `ring_core_0_17_6_CRYPTO_poly1305_init'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::aead::poly1305::Context::update':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/aead/poly1305.rs:104:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_open17h00052ce1cf169fb9E+0x105): undefined reference to `ring_core_0_17_6_CRYPTO_poly1305_update'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/aead/poly1305.rs:104:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_open17h00052ce1cf169fb9E+0x12b): undefined reference to `ring_core_0_17_6_CRYPTO_poly1305_update'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/aead/poly1305.rs:104:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_open17h00052ce1cf169fb9E+0x16c): undefined reference to `ring_core_0_17_6_CRYPTO_poly1305_update'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/aead/poly1305.rs:104:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_open17h00052ce1cf169fb9E+0x196): undefined reference to `ring_core_0_17_6_CRYPTO_poly1305_update'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/aead/poly1305.rs:104:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_open17h00052ce1cf169fb9E+0x268): undefined reference to `ring_core_0_17_6_CRYPTO_poly1305_update'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::aead::poly1305::Context::finish':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/aead/poly1305.rs:113:(.text._ZN4ring4aead17chacha20_poly130522chacha20_poly1305_open17h00052ce1cf169fb9E+0x293): undefined reference to `ring_core_0_17_6_CRYPTO_poly1305_finish'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::ec::curve25519::scalar::MaskedScalar::from_bytes_masked':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/scalar.rs:65:(.text._ZN4ring2ec10curve255196x2551926x25519_public_from_private17h734a95765c679bb4E+0x3e): undefined reference to `ring_core_0_17_6_x25519_sc_mask'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::cpu::intel::Feature::available':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/cpu/intel.rs:34:(.text._ZN4ring2ec10curve255196x2551926x25519_public_from_private17h734a95765c679bb4E+0x58): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::ec::curve25519::x25519::x25519_public_from_private':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/x25519.rs:86:(.text._ZN4ring2ec10curve255196x2551926x25519_public_from_private17h734a95765c679bb4E+0x7d): undefined reference to `ring_core_0_17_6_x25519_public_from_private_generic_masked'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::ec::curve25519::scalar::MaskedScalar::from_bytes_masked':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/scalar.rs:65:(.text._ZN4ring2ec10curve255196x2551911x25519_ecdh17h198317cd4da18d40E+0x4c): undefined reference to `ring_core_0_17_6_x25519_sc_mask'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::cpu::intel::Feature::available':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/cpu/intel.rs:34:(.text._ZN4ring2ec10curve255196x2551911x25519_ecdh17h198317cd4da18d40E+0x7e): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::ec::curve25519::x25519::x25519_ecdh::scalar_mult':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/x25519.rs:129:(.text._ZN4ring2ec10curve255196x2551911x25519_ecdh17h198317cd4da18d40E+0x95): undefined reference to `ring_core_0_17_6_x25519_scalar_mult_adx'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/x25519.rs:141:(.text._ZN4ring2ec10curve255196x2551911x25519_ecdh17h198317cd4da18d40E+0x9d): undefined reference to `ring_core_0_17_6_x25519_scalar_mult_generic_masked'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::constant_time::verify_slices_are_equal':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/constant_time.rs:27:(.text._ZN4ring2ec10curve255196x2551911x25519_ecdh17h198317cd4da18d40E+0xba): undefined reference to `ring_core_0_17_6_CRYPTO_memcmp'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::ec::suite_b::ops::p256::p256_point_mul_base_impl':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/suite_b/ops/p256.rs:106:(.text._ZN4ring2ec7suite_b3ops4p25624p256_point_mul_base_impl17h775ddddc090c4a34E+0x47): undefined reference to `ring_core_0_17_6_p256_point_mul_base'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_less_than_limbs_consttime':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:70:(.text._ZN4ring2ec7suite_b5curve28p256_check_private_key_bytes17had8becd4dc0ba0beE+0x178): undefined reference to `ring_core_0_17_6_LIMBS_less_than'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_are_zero_constant_time':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:86:(.text._ZN4ring2ec7suite_b5curve28p256_check_private_key_bytes17had8becd4dc0ba0beE+0x191): undefined reference to `ring_core_0_17_6_LIMBS_are_zero'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_less_than_limbs_consttime':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:70:(.text._ZN4ring2ec7suite_b5curve25p256_generate_private_key17h7dc182e5eb039e7bE+0x1ba): undefined reference to `ring_core_0_17_6_LIMBS_less_than'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_are_zero_constant_time':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:86:(.text._ZN4ring2ec7suite_b5curve25p256_generate_private_key17h7dc182e5eb039e7bE+0x1d2): undefined reference to `ring_core_0_17_6_LIMBS_are_zero'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_less_than_limbs_consttime':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:70:(.text._ZN4ring4limb43parse_big_endian_in_range_and_pad_consttime17hd66b3688027a83faE+0x164): undefined reference to `ring_core_0_17_6_LIMBS_less_than'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_are_zero_constant_time':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:86:(.text._ZN4ring4limb43parse_big_endian_in_range_and_pad_consttime17hd66b3688027a83faE+0x181): undefined reference to `ring_core_0_17_6_LIMBS_are_zero'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:86:(.text._ZN4ring2ec7suite_b11private_key31big_endian_affine_from_jacobian17hc22cd4c6bc6a0c54E+0xb2): undefined reference to `ring_core_0_17_6_LIMBS_are_zero'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_add_assign_mod':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:328:(.text._ZN4ring2ec7suite_b42verify_affine_point_is_on_the_curve_scaled17h1236b6a77e65a5bdE+0xa8): undefined reference to `ring_core_0_17_6_LIMBS_add_mod'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_equal_limbs_consttime':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:64:(.text._ZN4ring2ec7suite_b42verify_affine_point_is_on_the_curve_scaled17h1236b6a77e65a5bdE+0xf2): undefined reference to `ring_core_0_17_6_LIMBS_equal'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::ec::suite_b::ops::p384::p384_elem_sqr_mont':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/suite_b/ops/p384.rs:278:(.text._ZN4ring2ec7suite_b3ops4p38421p384_elem_inv_squared17h97c78d60da15fea1E+0x2b): undefined reference to `ring_core_0_17_6_p384_elem_mul_mont'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::ec::suite_b::ops::PrivateKeyOps::point_mul':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/suite_b/ops.rs:187:(.text._ZN4ring2ec7suite_b3ops4p38424p384_point_mul_base_impl17h4fc89806584c2210E+0x55): undefined reference to `ring_core_0_17_6_p384_point_mul'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::ec::suite_b::ops::p384::p384_elem_sqr_mont':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/suite_b/ops/p384.rs:278:(.text._ZN4ring2ec7suite_b3ops4p38418p384_elem_sqr_mont17hfd791d748e32a4fcE+0x5): undefined reference to `ring_core_0_17_6_p384_elem_mul_mont'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::ec::suite_b::ops::elem::binary_op':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/suite_b/ops/elem.rs:84:(.text._ZN4ring2ec7suite_b3ops4p38423p384_scalar_inv_to_mont17hc87ec7cd526f26e1E+0x54): undefined reference to `ring_core_0_17_6_p384_scalar_mul_mont'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::ec::suite_b::ops::elem::binary_op':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/suite_b/ops/elem.rs:84:(.text._ZN4ring2ec7suite_b3ops4p38423p384_scalar_inv_to_mont17hc87ec7cd526f26e1E+0xa24): undefined reference to `ring_core_0_17_6_p384_scalar_mul_mont'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_less_than_limbs_consttime':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:70:(.text._ZN4ring2ec7suite_b5curve28p384_check_private_key_bytes17h53d3bb04ab1b09c1E+0x21c): undefined reference to `ring_core_0_17_6_LIMBS_less_than'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_are_zero_constant_time':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:86:(.text._ZN4ring2ec7suite_b5curve28p384_check_private_key_bytes17h53d3bb04ab1b09c1E+0x235): undefined reference to `ring_core_0_17_6_LIMBS_are_zero'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_less_than_limbs_consttime':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:70:(.text._ZN4ring2ec7suite_b5curve25p384_generate_private_key17h903e5ed85aed15bcE+0x25e): undefined reference to `ring_core_0_17_6_LIMBS_less_than'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_are_zero_constant_time':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:86:(.text._ZN4ring2ec7suite_b5curve25p384_generate_private_key17h903e5ed85aed15bcE+0x276): undefined reference to `ring_core_0_17_6_LIMBS_are_zero'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::ec::suite_b::ops::p256::point_mul_base_vartime':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/suite_b/ops/p256.rs:152:(.text._ZN4ring2ec7suite_b3ops4p25617twin_mul_nistz25617h635803b07342a2bdE+0x54): undefined reference to `ring_core_0_17_6_p256_point_mul_base_vartime'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::ec::suite_b::ops::PrivateKeyOps::point_mul':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/suite_b/ops.rs:187:(.text._ZN4ring2ec7suite_b3ops4p25617twin_mul_nistz25617h635803b07342a2bdE+0xb8): undefined reference to `ring_core_0_17_6_p256_point_mul'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/suite_b/ops.rs:187:(.text._ZN4core3ops8function6FnOnce9call_once17h701fc64fe47d1d02E+0x5d): undefined reference to `ring_core_0_17_6_p384_point_mul'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::ec::suite_b::ops::CommonOps::point_sum':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/suite_b/ops.rs:134:(.text._ZN4core3ops8function6FnOnce9call_once17h701fc64fe47d1d02E+0x122): undefined reference to `ring_core_0_17_6_p384_point_add'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_less_than_limbs_consttime':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:70:(.text._ZN119_$LT$ring..ec..curve25519..ed25519..verification..EdDSAParameters$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17h65ea6fadfca1db9bE+0x20e): undefined reference to `ring_core_0_17_6_LIMBS_less_than'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::ec::curve25519::ops::ExtPoint::from_encoded_point_vartime':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/ops.rs:101:(.text._ZN119_$LT$ring..ec..curve25519..ed25519..verification..EdDSAParameters$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17h65ea6fadfca1db9bE+0x28b): undefined reference to `ring_core_0_17_6_x25519_ge_frombytes_vartime'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::ec::curve25519::ops::Elem<ring::ec::curve25519::ops::T>::negate':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/ops.rs:52:(.text._ZN119_$LT$ring..ec..curve25519..ed25519..verification..EdDSAParameters$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17h65ea6fadfca1db9bE+0x2b1): undefined reference to `ring_core_0_17_6_x25519_fe_neg'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::ec::curve25519::scalar::Scalar::from_sha512_digest_reduced':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/scalar.rs:51:(.text._ZN119_$LT$ring..ec..curve25519..ed25519..verification..EdDSAParameters$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17h65ea6fadfca1db9bE+0x4a4): undefined reference to `ring_core_0_17_6_x25519_sc_reduce'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `<ring::ec::curve25519::ed25519::verification::EdDSAParameters as ring::signature::VerificationAlgorithm>::verify':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/ed25519/verification.rs:65:(.text._ZN119_$LT$ring..ec..curve25519..ed25519..verification..EdDSAParameters$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17h65ea6fadfca1db9bE+0x52a): undefined reference to `ring_core_0_17_6_x25519_ge_double_scalarmult_vartime'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::ec::curve25519::ops::encode_point':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/ops.rs:141:(.text._ZN119_$LT$ring..ec..curve25519..ed25519..verification..EdDSAParameters$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17h65ea6fadfca1db9bE+0x627): undefined reference to `ring_core_0_17_6_x25519_fe_invert'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/ops.rs:144:(.text._ZN119_$LT$ring..ec..curve25519..ed25519..verification..EdDSAParameters$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17h65ea6fadfca1db9bE+0x64d): undefined reference to `ring_core_0_17_6_x25519_fe_mul_ttt'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/ops.rs:148:(.text._ZN119_$LT$ring..ec..curve25519..ed25519..verification..EdDSAParameters$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17h65ea6fadfca1db9bE+0x6a8): undefined reference to `ring_core_0_17_6_x25519_fe_tobytes'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/curve25519/ops.rs:150:(.text._ZN119_$LT$ring..ec..curve25519..ed25519..verification..EdDSAParameters$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17h65ea6fadfca1db9bE+0x6b1): undefined reference to `ring_core_0_17_6_x25519_fe_isnegative'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_reduce_once_constant_time':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:135:(.text._ZN125_$LT$ring..ec..suite_b..ecdsa..verification..EcdsaVerificationAlgorithm$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17he0bff02e31493afbE+0x343): undefined reference to `ring_core_0_17_6_LIMBS_reduce_once'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_are_zero_constant_time':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:86:(.text._ZN125_$LT$ring..ec..suite_b..ecdsa..verification..EcdsaVerificationAlgorithm$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17he0bff02e31493afbE+0x590): undefined reference to `ring_core_0_17_6_LIMBS_are_zero'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:86:(.text._ZN125_$LT$ring..ec..suite_b..ecdsa..verification..EcdsaVerificationAlgorithm$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17he0bff02e31493afbE+0x714): undefined reference to `ring_core_0_17_6_LIMBS_are_zero'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_less_than_limbs_consttime':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:70:(.text._ZN125_$LT$ring..ec..suite_b..ecdsa..verification..EcdsaVerificationAlgorithm$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17he0bff02e31493afbE+0xb58): undefined reference to `ring_core_0_17_6_LIMBS_less_than'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_add_assign_mod':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:328:(.text._ZN125_$LT$ring..ec..suite_b..ecdsa..verification..EcdsaVerificationAlgorithm$u20$as$u20$ring..signature..VerificationAlgorithm$GT$6verify17he0bff02e31493afbE+0xb96): undefined reference to `ring_core_0_17_6_LIMBS_add_mod'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_are_even_constant_time':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:92:(.text._ZN4ring3rsa12verification11verify_rsa_17h14e5d6a4f29f921bE+0x28e): undefined reference to `ring_core_0_17_6_LIMBS_are_even'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_less_than_limb_constant_time':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:81:(.text._ZN4ring3rsa12verification11verify_rsa_17h14e5d6a4f29f921bE+0x2a9): undefined reference to `ring_core_0_17_6_LIMBS_less_than_limb'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::arithmetic::bigint::modulus::OwnedModulus<M>::from_be_bytes':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/arithmetic/bigint/modulus.rs:129:(.text._ZN4ring3rsa12verification11verify_rsa_17h14e5d6a4f29f921bE+0x2c0): undefined reference to `ring_core_0_17_6_bn_neg_inv_mod_r_u64'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_minimal_bits':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:118:(.text._ZN4ring3rsa12verification11verify_rsa_17h14e5d6a4f29f921bE+0x32a): undefined reference to `ring_core_0_17_6_LIMB_shr'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `<core::ops::range::Range<T> as core::iter::range::RangeIteratorImpl>::spec_next':
          /usr/src/debug/rust/rustc-1.76.0-src/library/core/src/iter/range.rs:729:(.text._ZN4ring3rsa12verification11verify_rsa_17h14e5d6a4f29f921bE+0x4de): undefined reference to `ring_core_0_17_6_LIMBS_shl_mod'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::arithmetic::bigint::One<M,ring::arithmetic::montgomery::RR>::newRR':
          /usr/src/debug/rust/rustc-1.76.0-src/library/core/src/iter/range.rs:(.text._ZN4ring3rsa12verification11verify_rsa_17h14e5d6a4f29f921bE+0x506): undefined reference to `ring_core_0_17_6_LIMBS_shl_mod'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_less_than_limbs_consttime':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:70:(.text._ZN4ring3rsa12verification11verify_rsa_17h14e5d6a4f29f921bE+0x890): undefined reference to `ring_core_0_17_6_LIMBS_less_than'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::limb::limbs_are_zero_constant_time':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/limb.rs:86:(.text._ZN4ring3rsa12verification11verify_rsa_17h14e5d6a4f29f921bE+0x8cc): undefined reference to `ring_core_0_17_6_LIMBS_are_zero'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::constant_time::verify_slices_are_equal':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/constant_time.rs:27:(.text._ZN108_$LT$rustls..tls12..cipher..ChaCha20Poly1305MessageDecrypter$u20$as$u20$rustls..cipher..MessageDecrypter$GT$7decrypt17h92abd9d70c7eb40fE+0x259): undefined reference to `ring_core_0_17_6_CRYPTO_memcmp'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/constant_time.rs:27:(.text._ZN95_$LT$rustls..tls12..cipher..GcmMessageDecrypter$u20$as$u20$rustls..cipher..MessageDecrypter$GT$7decrypt17h345d1638df695818E+0x1b7): undefined reference to `ring_core_0_17_6_CRYPTO_memcmp'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/constant_time.rs:27:(.text._ZN89_$LT$rustls..tls13..Tls13MessageDecrypter$u20$as$u20$rustls..cipher..MessageDecrypter$GT$7decrypt17h4967d7e3d1d71fa9E+0x164): undefined reference to `ring_core_0_17_6_CRYPTO_memcmp'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/constant_time.rs:27:(.text._ZN142_$LT$rustls..client..tls12..ExpectFinished$u20$as$u20$rustls..common_state..State$LT$rustls..client..client_conn..ClientConnectionData$GT$$GT$6handle17h2c7d99d26d780947E+0x27d): undefined reference to `ring_core_0_17_6_CRYPTO_memcmp'
          /usr/bin/ld: /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/constant_time.rs:27:(.text._ZN142_$LT$rustls..client..tls13..ExpectFinished$u20$as$u20$rustls..common_state..State$LT$rustls..client..client_conn..ClientConnectionData$GT$$GT$6handle17h0429426e4bc9467aE+0x258): undefined reference to `ring_core_0_17_6_CRYPTO_memcmp'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o: in function `ring::cpu::features::{{closure}}':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/cpu.rs:51:(.text.unlikely._ZN4spin4once17Once$LT$T$C$R$GT$18try_call_once_slow17h5099c1b2d35f1638E+0x11): undefined reference to `ring_core_0_17_6_OPENSSL_cpuid_setup'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o:(.data.rel.ro._ZN4ring2ec7suite_b3ops4p25615PRIVATE_KEY_OPS17h13a3e4552b27003cE+0x18): undefined reference to `ring_core_0_17_6_p256_point_mul'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o:/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/src/ec/suite_b/ops/p384.rs:20:(.data.rel.ro._ZN4ring2ec7suite_b3ops4p38410COMMON_OPS17h508f69093c91ca4fE+0x0): undefined reference to `ring_core_0_17_6_p384_elem_mul_mont'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o:(.data.rel.ro._ZN4ring2ec7suite_b3ops4p38410COMMON_OPS17h508f69093c91ca4fE+0x10): undefined reference to `ring_core_0_17_6_p384_point_add'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o:(.data.rel.ro._ZN4ring2ec7suite_b3ops4p38415PRIVATE_KEY_OPS17h5e37621ed92a456aE+0x18): undefined reference to `ring_core_0_17_6_p384_point_mul'
          /usr/bin/ld: /build/tlrc/src/tlrc-1.8.0/target/release/deps/tldr-cad54f60aee724ab.tldr.88873424f1eaf6df-cgu.0.rcgu.o:(.data.rel.ro._ZN4ring2ec7suite_b3ops4p38410SCALAR_OPS17h1ea31fe91af86b6cE+0x10): undefined reference to `ring_core_0_17_6_p384_scalar_mul_mont'
          /usr/bin/ld: /tmp/rustcsp7KkM/libring-cb75d4dbccddaabf.rlib(fb2341e01a1804e3-chacha-x86_64-elf.o): in function `ring_core_0_17_6_ChaCha20_ctr32':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/pregenerated/chacha-x86_64-elf.S:52:(.text+0x11): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /tmp/rustcsp7KkM/libring-cb75d4dbccddaabf.rlib(fb2341e01a1804e3-aesni-x86_64-elf.o): in function `ring_core_0_17_6_aes_hw_ctr32_encrypt_blocks':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/pregenerated/aesni-x86_64-elf.S:369:(.text+0x4bf): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /tmp/rustcsp7KkM/libring-cb75d4dbccddaabf.rlib(fb2341e01a1804e3-aesni-x86_64-elf.o): in function `ring_core_0_17_6_aes_hw_set_encrypt_key':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/pregenerated/aesni-x86_64-elf.S:881:(.text+0xd1a): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /tmp/rustcsp7KkM/libring-cb75d4dbccddaabf.rlib(fb2341e01a1804e3-x86_64-mont-elf.o): in function `ring_core_0_17_6_bn_mul_mont':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/pregenerated/x86_64-mont-elf.S:26:(.text+0x1c): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /tmp/rustcsp7KkM/libring-cb75d4dbccddaabf.rlib(fb2341e01a1804e3-x86_64-mont-elf.o): in function `bn_sqr8x_mont':
          /build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/pregenerated/x86_64-mont-elf.S:788:(.text+0x8b7): undefined reference to `ring_core_0_17_6_OPENSSL_ia32cap_P'
          /usr/bin/ld: /tmp/rustcsp7KkM/libring-cb75d4dbccddaabf.rlib(fb2341e01a1804e3-x86_64-mont5-elf.o):/build/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ring-0.17.6/pregenerated/x86_64-mont5-elf.S:24: more undefined references to `ring_core_0_17_6_OPENSSL_ia32cap_P' follow
          collect2: error: ld returned 1 exit status

  = note: some `extern` functions couldn't be found; some native libraries may need to be installed or have their path specified
  = note: use the `-l` flag to specify native libraries to link
  = note: use the `cargo:rustc-link-lib` directive to specify the native libraries to link with Cargo (see https://doc.rust-lang.org/cargo/reference/build-scripts.html#cargorustc-link-libkindname)

error: could not compile `tlrc` (bin "tldr") due to 1 previous error

Feature request: add ability to highlight command name

add ability to highlight command name text differently from the style of the example

like this:
Screenshot 2024-02-26 at 7 53 37 PM

config option could look like this:

[style.command_name]
color = {rgb = [96, 174, 239]} # command name is blue
background = "default"
bold = true
underline = false
italic = false
dim = false
strikethrough = false

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.