Skip to content

Commit d642ea7

Browse files
committed
v0.0.39
1 parent ffb1bb3 commit d642ea7

File tree

11 files changed

+586
-691
lines changed

11 files changed

+586
-691
lines changed

.justfile

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
default:
2+
just --choose
3+
4+
help:
5+
@make help
6+
7+
all:
8+
@make all
9+
10+
bin:
11+
@make bin
12+
13+
cargo-help:
14+
@make cargo-help
15+
16+
cargo-release-all:
17+
@make cargo-release-all
18+
19+
cargo-clean-release:
20+
@make cargo-clean-release
21+
22+
cargo-publish-all:
23+
@make cargo-publish-all
24+
25+
cargo-install-bins:
26+
@make cargo-install-bins
27+
28+
cargo-build:
29+
@make cargo-build
30+
31+
cargo-install:
32+
@make cargo-install
33+
34+
cargo-build-release:
35+
@make cargo-build-release
36+
37+
cargo-check:
38+
@make cargo-check
39+
40+
cargo-bench:
41+
@make cargo-bench
42+
43+
cargo-test:
44+
@make cargo-test
45+
46+
cargo-test-nightly:
47+
@make cargo-test-nightly
48+
49+
cargo-report:
50+
@make cargo-report
51+
52+
cargo-run:
53+
@make cargo-run
54+
55+
cargo-dist:
56+
@make cargo-dist
57+
58+
cargo-dist-build:
59+
@make cargo-dist-build
60+
61+
cargo-dist-manifest:
62+
@make cargo-dist-manifest
63+

.nojekyll

Whitespace-only changes.

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nips"
3-
version = "0.0.38"
3+
version = "0.0.39"
44
edition = "2021"
55
authors = ["randymcmillan <[email protected]>", "The nostr-protocol/nips Contributors"]
66
repository = "https://github.com/gnostr-org/gnostr-nips.git"

Makefile

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,6 @@ all: bin### all
1212
bin: ### bin
1313
cargo b --manifest-path Cargo.toml
1414

15-
.ONESHELL:
16-
readme-html:
17-
@cargo b && ./target/debug/nips -s README > readme.html
18-
if [ ! $(shell uname -s) = 'Darwin' ]; then \
19-
if grep -q Microsoft /proc/version; then \
20-
alias open='explorer.exe'; \
21-
else \
22-
alias open='xdg-open'; \
23-
fi \
24-
fi \
25-
&& open readme.html
2615
##
2716
##===============================================================================
2817
##make cargo-*

USAGE.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
## nips
2+
## nips
3+
## nips
4+
## nips
5+
## nips
6+
## nips
7+
8+
nips: a nostr-protocol/nips server
9+
10+
Usage: nips [OPTIONS]
11+
12+
Options:
13+
-d, --debug Enable debug logging
14+
-l, --list-embedded List all embedded files
15+
-s, --show <NIP> Show the contents of an embedded file using a pager
16+
--serve Axum Serve
17+
-p, --port <PORT> Sets the port number to listen on [default: 8080]
18+
-e, --export Export all embedded files to the current directory
19+
--export-html Export all embedded files to the current directory
20+
--export-path <PATH> Export all embedded files to the specified path
21+
-u, --usage Show this manual
22+
-h, --help Print help
23+
-V, --version Print version

docs/USAGE.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<h2>nips</h2>
2+
<h2>nips</h2>
3+
<h2>nips</h2>
4+
<h2>nips</h2>
5+
<h2>nips</h2>
6+
<h2>nips</h2>
7+
<p>nips: a nostr-protocol/nips server</p>
8+
<p>Usage: nips [OPTIONS]</p>
9+
<p>Options:
10+
-d, --debug Enable debug logging
11+
-l, --list-embedded List all embedded files
12+
-s, --show <NIP> Show the contents of an embedded file using a pager
13+
--serve Axum Serve
14+
-p, --port <PORT> Sets the port number to listen on [default: 8080]
15+
-e, --export Export all embedded files to the current directory
16+
--export-html Export all embedded files to the current directory
17+
--export-path <PATH> Export all embedded files to the specified path
18+
-u, --usage Show this manual
19+
-h, --help Print help
20+
-V, --version Print version</p>

0 commit comments

Comments
 (0)