Skip to content

Commit 8e01e28

Browse files
committed
- Replace acme_lib with instant-acme, drop OpenSSL dependency #192
1 parent c0db207 commit 8e01e28

File tree

5 files changed

+313
-316
lines changed

5 files changed

+313
-316
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ See [STATUS.md](server/STATUS.md) to learn more about which features will remain
1919
- Meta tags server side #577
2020
- Include JSON-AD in initial response, speed up first render #511
2121
- Remove feature to index external RDF files and search them #579
22+
- Replace `acme_lib` with `instant-acme`, drop OpenSSL dependency #192
2223

2324
## [v0.34.0] - 2022-10-31
2425

CONTRIBUTE.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Check out the [Roadmap](https://docs.atomicdata.dev/roadmap.html) if you want to
1414

1515
- [Table of contents](#table-of-contents)
1616
- [Running locally](#running-locally)
17+
- [Cross compilation](#cross-compilation)
1718
- [IDE setup (VSCode)](#ide-setup-vscode)
1819
- [Testing](#testing)
1920
- [Code coverage](#code-coverage)
@@ -45,6 +46,16 @@ Since `atomic-server` is developed in conjunction with the typescript / react `a
4546
- Visit your `localhost` in your locally running `atomic-data-browser` instance: (e.g. `http://localhost:8080/app/show?subject=http%3A%2F%2Flocalhost`)
4647
- use `cargo watch -- cargo run` to automatically recompile `atomic-server` when you push new assets using `pmpm build-server` in `atomic-data-browser`. This can be useful if you're debugging specific features that you can't reproduce while the front-end is hosted in vite.
4748

49+
## Cross compilation
50+
51+
If you want to build `atomic-server` for some other target (e.g. building for linux from macOS), you can use the `cross` crate.
52+
53+
```sh
54+
cargo install cross
55+
# make sure docker is running!
56+
cross build --target x86_64-unknown-linux-musl
57+
```
58+
4859
## IDE setup (VSCode)
4960

5061
This project is primarily being developed in VSCode.

0 commit comments

Comments
 (0)