Skip to content

Commit c28da0b

Browse files
committed
add custom dockerfile
1 parent 0f5ba02 commit c28da0b

File tree

4 files changed

+39
-5
lines changed

4 files changed

+39
-5
lines changed

Diff for: .github/workflows/rust.yml

+7
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,17 @@ jobs:
5959
steps:
6060
- uses: actions/checkout@v4
6161

62+
- name: install gcc-multilib
63+
run: apt update && apt install gcc-multilib
64+
6265
- name: Install cross
6366
uses: taiki-e/install-action@v2
6467
with:
6568
tool: cross
69+
- name: Install bindgen-cli
70+
uses: taiki-e/cache-cargo-install-action@v2
71+
with:
72+
tool: bindgen-cli
6673

6774
- uses: actions/cache@v4
6875
with:

Diff for: Cargo.lock

+26-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ thiserror = "1.0"
4242
rustix = { version = "0.38.34", features = ["process", "fs"] }
4343
tower = "0.4"
4444
tracing = "0.1"
45-
aws-lc-rs = { version = "1.12", features = ["bindgen"] }
45+
rustls = { version = "0.23", default-features = true }
46+
aws-lc-rs = { version = "1", features = ["bindgen"] }
47+
4648

4749
[workspace.dependencies.tracing-subscriber]
4850
version = "0.3"

Diff for: crates/atuin-server/Cargo.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,13 @@ rand = { workspace = true }
2424
tokio = { workspace = true }
2525
async-trait = { workspace = true }
2626
axum = "0.7"
27-
axum-server = { version = "0.7", features = ["tls-rustls-no-provider"] }
27+
axum-server = { version = "0.7", features = ["tls-rustls"] }
2828
fs-err = { workspace = true }
2929
tower = { workspace = true }
3030
tower-http = { version = "0.5", features = ["trace"] }
3131
reqwest = { workspace = true }
32-
rustls = { version = "0.23", default-features = true }
32+
rustls = { workspace = true }
33+
aws-lc-rs = { version = "1", features = ["bindgen"] }
3334
argon2 = "0.5"
3435
semver = { workspace = true }
3536
metrics-exporter-prometheus = "0.12.1"

0 commit comments

Comments
 (0)