Skip to content

Commit 66bdd0a

Browse files
committed
chore(workspace): release
1 parent 3e30098 commit 66bdd0a

13 files changed

Lines changed: 43 additions & 43 deletions

File tree

Cargo.lock

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,16 @@ codegen-units = 1
5252

5353
[workspace.dependencies]
5454
# local crates
55-
roxy-types = { path = "crates/types" }
56-
roxy-traits = { path = "crates/traits" }
57-
roxy-runtime = { path = "crates/runtime" }
58-
roxy-backend = { path = "crates/backend" }
59-
roxy-cache = { path = "crates/cache" }
60-
roxy-rpc = { path = "crates/rpc" }
61-
roxy-server = { path = "crates/server" }
62-
roxy-config = { path = "crates/config" }
63-
roxy-test-utils = { path = "crates/test-utils" }
64-
roxy-cli = { path = "crates/cli" }
55+
roxy-types = { version = "0.1.0", path = "crates/types" }
56+
roxy-traits = { version = "0.1.0", path = "crates/traits" }
57+
roxy-runtime = { version = "0.1.0", path = "crates/runtime" }
58+
roxy-backend = { version = "0.1.0", path = "crates/backend" }
59+
roxy-cache = { version = "0.1.0", path = "crates/cache" }
60+
roxy-rpc = { version = "0.1.0", path = "crates/rpc" }
61+
roxy-server = { version = "0.1.0", path = "crates/server" }
62+
roxy-config = { version = "0.1.0", path = "crates/config" }
63+
roxy-test-utils = { version = "0.1.0", path = "crates/test-utils" }
64+
roxyproxy-cli = { version = "0.1.0", path = "crates/cli" }
6565

6666
# alloy - Ethereum primitives and JSON-RPC types
6767
alloy-primitives = "1.4"

bin/roxy-proxy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ repository.workspace = true
1313
workspace = true
1414

1515
[dependencies]
16-
roxy-cli.workspace = true
16+
roxyproxy-cli.workspace = true
1717
roxy-config.workspace = true
1818

1919
tokio.workspace = true

bin/roxy-proxy/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ extern crate tracing;
77

88
use clap::Parser;
99
use eyre::{Context, Result};
10-
use roxy_cli::{Cli, Logger, build_app, check_config, init_tracing};
10+
use roxyproxy_cli::{Cli, Logger, build_app, check_config, init_tracing};
1111
use roxy_config::RoxyConfig;
1212

1313
/// Main entry point for the Roxy RPC proxy.
@@ -26,5 +26,5 @@ async fn main() -> Result<()> {
2626
Logger::new().log(&config);
2727

2828
let app = build_app(&config).await?;
29-
roxy_cli::run_server(app, &config).await
29+
roxyproxy_cli::run_server(app, &config).await
3030
}

crates/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "roxy-cli"
2+
name = "roxyproxy-cli"
33
description = "CLI utilities for Roxy RPC proxy"
44

55
version.workspace = true

crates/cli/src/backends.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use roxy_traits::Backend;
1414
/// # Example
1515
///
1616
/// ```ignore
17-
/// use roxy_cli::BackendFactory;
17+
/// use roxyproxy_cli::BackendFactory;
1818
///
1919
/// let factory = BackendFactory::new().with_batch_size(200);
2020
/// let backends = factory.create(&config)?;

crates/cli/src/builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ use crate::{
2727
/// # Example
2828
///
2929
/// ```ignore
30-
/// use roxy_cli::AppBuilder;
30+
/// use roxyproxy_cli::AppBuilder;
3131
/// use roxy_config::RoxyConfig;
3232
///
3333
/// let config = RoxyConfig::from_file("roxy.toml")?;

crates/cli/src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use clap::Parser;
1515
/// # Example
1616
///
1717
/// ```ignore
18-
/// use roxy_cli::{Cli, check_config};
18+
/// use roxyproxy_cli::{Cli, check_config};
1919
/// use clap::Parser;
2020
///
2121
/// #[tokio::main]

crates/cli/src/groups.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use roxy_traits::{Backend, LoadBalancer};
1515
/// # Example
1616
///
1717
/// ```ignore
18-
/// use roxy_cli::{BackendFactory, GroupFactory};
18+
/// use roxyproxy_cli::{BackendFactory, GroupFactory};
1919
///
2020
/// let backends = BackendFactory::new().create(&config)?;
2121
/// let groups = GroupFactory::new().create(&config, &backends)?;

crates/cli/src/routing.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use roxy_rpc::{MethodRouter, RouteTarget};
1010
/// # Example
1111
///
1212
/// ```ignore
13-
/// use roxy_cli::RouterFactory;
13+
/// use roxyproxy_cli::RouterFactory;
1414
///
1515
/// let router = RouterFactory::new().create(&config);
1616
/// ```

0 commit comments

Comments
 (0)