A tui multi protocol chat client written in rust.
This repository has been archived on 2024-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Benedikt Peetz df07c3fc24
build(flake): Replace self-packaged cranelift with rustup's
Motivation
==========
The self-packed one sort-of worked, but was rather flaky, while the one
from rustup obviously works, as it's an officially distributed part.

Running it
==========
Instead of the `cargo clif [build, etc.]` you now need to run (on nightly):
```
RUSTFLAGS="-Zcodegen-backend=cranelift" cargo build
```

Performance
===========
On my system I noticed, that a debug build takes around 20 sec *more*
with cranelift, compared to the default LLVM backend.

One possible hypothesis, for that could be, that cranelift does
not link via `mold` but instead still uses GNU's `gold`.

On the other hand, the performance decrease could also be caused
by the fact, that it's an early preview and some optimizations are
still lacking.
2023-10-31 18:47:01 +01:00
.cargo Build(Cargo): Add mold as default linker in both profiles 2023-07-26 21:38:38 +02:00
config/lua feat(config): added plane cycling 2023-10-19 20:04:27 +02:00
docs Docs(architecture): Add lua code execution to diagram 2023-08-04 12:36:46 +02:00
language_macros build(treewide): Update 2023-10-18 21:14:03 +02:00
src refactor: restructured event sources 2023-10-19 18:14:59 +02:00
.envrc Build(flake): Enable direnv integration 2023-07-09 07:28:40 +02:00
.gitignore feat(command_interface): Support user specified keymappings 2023-10-16 14:04:03 +02:00
Cargo.lock build(treewide): Update 2023-10-31 18:04:18 +01:00
Cargo.toml build(treewide): Update 2023-10-31 18:04:18 +01:00
LICENSE docs: added initial docs (README, LICENSE, commit message style) 2023-06-15 00:10:05 +02:00
README.md docs: added initial docs (README, LICENSE, commit message style) 2023-06-15 00:10:05 +02:00
flake.lock build(flake): Replace self-packaged cranelift with rustup's 2023-10-31 18:47:01 +01:00
flake.nix build(flake): Replace self-packaged cranelift with rustup's 2023-10-31 18:47:01 +01:00
logo.png fix (logo): made logo 1:1 2023-06-15 12:16:36 +02:00
logo.svg feature (logo): designed a placeholder logo 2023-06-15 01:10:30 +02:00
update.sh build(update.sh): Include the language_macros dir in the update 2023-10-18 21:14:23 +02:00

README.md

Trinitrix

Trinitrix is a terminal UI client for the matrix chat protocol. Docs can be found here.


License (MIT)

Copyright 2023 The Trinitrix Project antifallobst@systemausfall.org

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.