Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
171 changes: 152 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ members = [
"lightway-app-utils",
"lightway-client",
"lightway-server",
"lightway-raptor",
]

resolver = "2"
Expand Down
2 changes: 1 addition & 1 deletion Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
FROM +install-build-dependencies
COPY --keep-ts Cargo.toml Cargo.lock ./
COPY --keep-ts deny.toml ./
COPY --keep-ts --dir lightway-core lightway-app-utils lightway-client lightway-server .cargo ./
COPY --keep-ts --dir lightway-core lightway-app-utils lightway-client lightway-server lightway-raptor .cargo ./

# build builds with the Cargo release profile
build:
Expand All @@ -59,7 +59,7 @@

# build-arm64 build for arm64. Support building from an amd64 or arm64 host
build-arm64:
BUILD +build --ARCH="arm64"

Check failure on line 62 in Earthfile

View workflow job for this annotation

GitHub Actions / earthly (lint)

Error

The command RUN set -e; cargo $args; cargo sweep -r -t $EARTHLY_SWEEP_DAYS; cargo sweep -r -i; $EARTHLY_FUNCTIONS_HOME/copy-output.sh "$output"; did not complete successfully. Exit code 101

Check failure on line 62 in Earthfile

View workflow job for this annotation

GitHub Actions / earthly (check-dependencies)

Error

The command RUN set -e; cargo $args; cargo sweep -r -t $EARTHLY_SWEEP_DAYS; cargo sweep -r -i; $EARTHLY_FUNCTIONS_HOME/copy-output.sh "$output"; did not complete successfully. Exit code 6

build-kyber-client:
FROM +source
Expand Down
14 changes: 14 additions & 0 deletions lightway-raptor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[package]
name = "lightway-raptor"
version = "0.1.0"
edition = "2021"

[dependencies]
raptorq = { version = "2.0.0", features = ["serde", "serde_support"] }
rand = "0.9.0-beta.0"
anyhow = "1.0.94"
tokio = "1.42.0"
time = "0.3.37"

[lints]
workspace = true
Loading
Loading