Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/cargo/oauth2-5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
genedna authored Jan 23, 2025
2 parents fd87b2b + ebf50c0 commit 66052f5
Show file tree
Hide file tree
Showing 26 changed files with 35 additions and 16 deletions.
32 changes: 32 additions & 0 deletions .github/ISSUE_TEMPLATE/r2cn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: r2cn
about: r2cn 任务模板
title: "[r2cn] "
labels: r2cn
assignees: ''

---

[标题] 为xxx实现xxx功能

[任务分值] xx分(根据任务分级自评)

[背景描述] 描述产品及特性

[需求描述] 目前需要开发的特性

[环境要求] 描述开发环境

[产出标准] xxx

[PR 提交地址] 仓库xxx分支的xxx目录

[期望完成时间] 202x年xx月xx日

[开发指导] 参考资料等

[导师及邮箱] YYY <[email protected]>

[备注] xxx

[标签] r2cn
4 changes: 0 additions & 4 deletions .gitmodules

This file was deleted.

4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ members = [
"ceres",
"libra",
"vault",
"neptune",
"aries",
"saturn",
"taurus",
Expand All @@ -29,7 +28,6 @@ ceres = { path = "ceres" }
callisto = { path = "jupiter/callisto" }
gemini = { path = "gemini" }
vault = { path = "vault" }
neptune = { path = "neptune" }
saturn = { path = "saturn" }
taurus = { path = "taurus" }
mega = { path = "mega" }
Expand Down Expand Up @@ -91,4 +89,4 @@ base64 = "0.22.1"
encoding_rs = "0.8.31"

[profile.release]
debug = true
debug = true
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 0 additions & 1 deletion gemini/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ common = { workspace = true }
callisto = { workspace = true }
vault = { workspace = true }
jupiter = { workspace = true }
neptune = { workspace = true }
ceres = { workspace = true }

axum = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion gemini/src/ztm/agent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ impl LocalZTMAgent {
remove_dir_all(path).unwrap();
}

neptune::start_agent(db_path, self.agent_port);
// neptune::start_agent(db_path, self.agent_port);
});
}
}
Expand Down
2 changes: 1 addition & 1 deletion gemini/src/ztm/hub.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub struct LocalZTMHub {
impl LocalZTMHub {
pub fn start_ztm_hub(self) {
tokio::spawn(async move {
neptune::start_hub(self.hub_port, self.name, &self.ca);
// neptune::start_hub(self.hub_port, self.name, &self.ca);
});
}
}
Expand Down
1 change: 0 additions & 1 deletion neptune/libs/ztm
Submodule ztm deleted from 978508
2 changes: 0 additions & 2 deletions panel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ edition = "2021"

[features]
default = []
p2p = ["neptune"]

[dependencies]
# ======= Mega Dependencies ======= #
Expand All @@ -14,7 +13,6 @@ common.workspace = true
jupiter.workspace = true
gateway.workspace = true

neptune = { workspace = true, optional = true }

# ===== Zed Gpui Dependencies ===== #
gpui = { git = "https://github.com/zed-industries/zed" }
Expand Down
3 changes: 0 additions & 3 deletions panel/src/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ pub(crate) async fn init(config: &MegaConfig) {
};
let ztm = ZtmOptions {
ztm_agent_port: 7777,
#[cfg(feature = "p2p")]
bootstrap_node: None,
#[cfg(not(feature = "p2p"))]
bootstrap_node: None,
cache: false,
};
Expand Down

0 comments on commit 66052f5

Please sign in to comment.