diff options
| author | murilo ijanc | 2026-03-25 02:07:37 -0300 |
|---|---|---|
| committer | murilo ijanc | 2026-03-25 02:07:37 -0300 |
| commit | 7aff2e1d279a4e442b32f49ca0a0eca065355787 (patch) | |
| tree | bc987ece7eb78bb8375de1b20123ecd0f90472ba /Makefile | |
| download | tesseras-paste-7aff2e1d279a4e442b32f49ca0a0eca065355787.tar.gz | |
Initial commit: tesseras-paste decentralized pastebin
DHT-backed encrypted pastebin with two binaries (tp/tpd),
XChaCha20-Poly1305 encryption, content-addressed storage,
and Unix socket + HTTP interfaces.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c670957 --- /dev/null +++ b/Makefile @@ -0,0 +1,30 @@ +all: release + +release: + cargo build --release + +debug: + cargo build + +test: + cargo test + +check: + cargo check + +clean: + cargo clean + +fmt: + cargo fmt + +clippy: + cargo clippy -- -D warnings + +doc: + cargo doc --no-deps --open + +audit: + cargo deny check + +.PHONY: all release debug test test-release check clean fmt clippy doc audit |