This commit restructures the `crypt` service to be more modular and decoupled from storage concerns. - The standard cryptographic implementations (`lthn`, `chachapoly`, `rsa`) have been moved to the `pkg/crypt/std` directory. - The `rootfs` components have been removed to decouple the library from storage. - Import paths have been updated to reflect the new structure.
12 lines
166 B
YAML
12 lines
166 B
YAML
version: '3'
|
|
|
|
tasks:
|
|
test:
|
|
desc: "Run all tests"
|
|
cmds:
|
|
- go test -v ./...
|
|
|
|
build:
|
|
desc: "Build the project"
|
|
cmds:
|
|
- go build -v ./...
|