more fixes?
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
6df5735f7d
commit
2d1d7b86be
|
@ -33,7 +33,7 @@ features = [
|
||||||
"net",
|
"net",
|
||||||
"tcp",
|
"tcp",
|
||||||
"io-util",
|
"io-util",
|
||||||
"rt-core",
|
"rt-threaded",
|
||||||
"time",
|
"time",
|
||||||
"stream"
|
"stream"
|
||||||
]
|
]
|
||||||
|
|
|
@ -8,7 +8,7 @@ edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
structopt = "0.3"
|
structopt = "0.3"
|
||||||
tokio = { version = "0.2", features = ["full"] }
|
tokio = { version = "0.2", features = ["rt-threaded", "macros"] }
|
||||||
tokio-rustls = { version = "0.14", features = ["dangerous_configuration"] }
|
tokio-rustls = { version = "0.14", features = ["dangerous_configuration"] }
|
||||||
async-trait = "0"
|
async-trait = "0"
|
||||||
pretty_env_logger = "0.4"
|
pretty_env_logger = "0.4"
|
||||||
|
|
|
@ -7,16 +7,25 @@
|
||||||
|__|_| /(____ //\__| | \___ >
|
|__|_| /(____ //\__| | \___ >
|
||||||
\/ \/ \______| \/
|
\/ \/ \______| \/
|
||||||
```
|
```
|
||||||
|
|
||||||
A curses client for Gemini!
|
A curses client for Gemini!
|
||||||
|
|
||||||
=> gemini://gemini.circumlunar.space/ Gemini homepage
|
|
||||||
|
|
||||||
## Homepage
|
## Homepage
|
||||||
The main homepage for majc is on tulpa.dev:
|
The main homepage for majc is on tulpa.dev:
|
||||||
|
|
||||||
=> https://tulpa.dev/cadey/maj
|
=> https://tulpa.dev/cadey/maj
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
majc can be installed using Nix:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ nix-env -if https://tulpa.dev/cadey/maj/archive/master.tar.gz -A majc
|
||||||
|
```
|
||||||
|
|
||||||
|
Then you can run it with `majc`:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ majc
|
||||||
|
```
|
||||||
|
|
||||||
## Important Keys
|
## Important Keys
|
||||||
<esc>: opens the menubar
|
<esc>: opens the menubar
|
||||||
c: closes the active window
|
c: closes the active window
|
||||||
|
@ -24,3 +33,7 @@ o: prompts to open a URL
|
||||||
q: quits majc
|
q: quits majc
|
||||||
?: shows this screen
|
?: shows this screen
|
||||||
~: toggles the debug logging pane
|
~: toggles the debug logging pane
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
=> / Go back
|
||||||
|
|
Loading…
Reference in New Issue