Skip to content

Commit d5e2e66

Browse files
committed
fixes 🐛
1 parent 31019db commit d5e2e66

12 files changed

Lines changed: 16 additions & 12 deletions

File tree

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ version = "0.1.0"
33
edition = "2024"
44
rust-version = "1.88"
55
license = "MIT"
6-
homepage = "https://github.com/base/roxy"
7-
repository = "https://github.com/base/roxy"
6+
homepage = "https://github.com/refcell/roxy"
7+
repository = "https://github.com/refcell/roxy"
88

99
[workspace]
1010
resolver = "2"

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,10 @@ Validate configuration without starting:
102102
| routing | Method routing rules and blocked methods |
103103
| metrics | Prometheus metrics endpoint |
104104

105+
## Acknowledgments
106+
107+
Roxy's design draws inspiration from the [commonwarexyz/monorepo](https://github.com/commonwarexyz/monorepo).
108+
105109
## License
106110

107111
MIT

crates/backend/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![doc = include_str!("../README.md")]
2-
#![doc(issue_tracker_base_url = "https://github.com/base/roxy/issues/")]
2+
#![doc(issue_tracker_base_url = "https://github.com/refcell/roxy/issues/")]
33
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
44
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
55

crates/cache/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![doc = include_str!("../README.md")]
2-
#![doc(issue_tracker_base_url = "https://github.com/base/roxy/issues/")]
2+
#![doc(issue_tracker_base_url = "https://github.com/refcell/roxy/issues/")]
33
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
44
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
55

crates/cli/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![doc = include_str!("../README.md")]
2-
#![doc(issue_tracker_base_url = "https://github.com/base/roxy/issues/")]
2+
#![doc(issue_tracker_base_url = "https://github.com/refcell/roxy/issues/")]
33
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
44
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
55

crates/config/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![doc = include_str!("../README.md")]
2-
#![doc(issue_tracker_base_url = "https://github.com/base/roxy/issues/")]
2+
#![doc(issue_tracker_base_url = "https://github.com/refcell/roxy/issues/")]
33
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
44
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
55

crates/rpc/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![doc = include_str!("../README.md")]
2-
#![doc(issue_tracker_base_url = "https://github.com/base/roxy/issues/")]
2+
#![doc(issue_tracker_base_url = "https://github.com/refcell/roxy/issues/")]
33
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
44
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
55

crates/runtime/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![doc = include_str!("../README.md")]
2-
#![doc(issue_tracker_base_url = "https://github.com/base/roxy/issues/")]
2+
#![doc(issue_tracker_base_url = "https://github.com/refcell/roxy/issues/")]
33
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
44
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
55

crates/server/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![doc = include_str!("../README.md")]
2-
#![doc(issue_tracker_base_url = "https://github.com/base/roxy/issues/")]
2+
#![doc(issue_tracker_base_url = "https://github.com/refcell/roxy/issues/")]
33
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
44
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
55

crates/test-utils/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![doc = include_str!("../README.md")]
2-
#![doc(issue_tracker_base_url = "https://github.com/base/roxy/issues/")]
2+
#![doc(issue_tracker_base_url = "https://github.com/refcell/roxy/issues/")]
33
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
44
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
55

0 commit comments

Comments
 (0)