Skip to content
Merged
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
38 changes: 19 additions & 19 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ pingora-http = { version = "0.8.0", git = "https://github.com/praxis-proxy/pingo
pingora-proxy = { version = "0.8.0", git = "https://github.com/praxis-proxy/pingora.git", rev = "b2fa2c9a8d4074e2a2a42e70ab4c17f8c61a566d", features = ["rustls"] }
percent-encoding = "2.3.2"
plotters = { version = "0.3.7", default-features = false, features = ["svg_backend", "line_series"] }
praxis = { path = "server", package = "praxis-proxy-server" }
praxis = { path = "server" }
praxis-core = { version = "0.1.0", path = "core", package = "praxis-proxy-core" }
praxis-filter = { version = "0.1.0", path = "filter", package = "praxis-proxy-filter" }
praxis-protocol = { version = "0.1.0", path = "protocol", package = "praxis-proxy-protocol" }
Expand Down
4 changes: 2 additions & 2 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ RUN mkdir -p core/src \

RUN --mount=type=cache,target=/usr/local/cargo/registry \
--mount=type=cache,target=/src/target \
cargo build --release -p praxis-proxy-server
cargo build --release -p praxis

# ------------------------------------------------------------------------------
# Cache Tricks
Expand All @@ -72,7 +72,7 @@ RUN find core/src filter/src \

RUN --mount=type=cache,target=/usr/local/cargo/registry \
--mount=type=cache,target=/src/target \
cargo build --release -p praxis-proxy-server \
cargo build --release -p praxis \
&& cp target/release/praxis /usr/local/bin/praxis

# ------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ test-unit:
cargo test -p praxis-proxy-core $(_NOCAPTURE)
cargo test -p praxis-proxy-filter $(_NOCAPTURE)
cargo test -p praxis-proxy-protocol $(_NOCAPTURE)
cargo test -p praxis-proxy-server $(_NOCAPTURE)
cargo test -p praxis $(_NOCAPTURE)

test-configuration:
cargo test -p praxis-tests-configuration $(_NOCAPTURE)
Expand Down
2 changes: 1 addition & 1 deletion server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "praxis-proxy-server"
name = "praxis"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion xtask/src/benchmark/flamegraph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ fn require_tool(name: &str, hint: &str) {
/// Build the profiling binary and return its path.
fn build_profiling_binary() -> PathBuf {
let status = Command::new("cargo")
.args(["build", "--profile", "profiling", "-p", "praxis-proxy-server"])
.args(["build", "--profile", "profiling", "-p", "praxis"])
.env("RUSTFLAGS", "-C force-frame-pointers=yes")
.status()
.expect("failed to run cargo build");
Expand Down
Loading