Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
ibigbug committed Sep 2, 2023
1 parent a9edeef commit 36be21c
Show file tree
Hide file tree
Showing 15 changed files with 1,481 additions and 75 deletions.
992 changes: 950 additions & 42 deletions Cargo.Bazel.lock

Large diffs are not rendered by default.

184 changes: 176 additions & 8 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 WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ crates_repository(
"//:Cargo.toml",
"//clash:Cargo.toml",
"//clash_lib:Cargo.toml",
"//clash_doc:Cargo.toml",
],
)

Expand Down
Empty file added clash_doc/BUILD.bazel
Empty file.
9 changes: 9 additions & 0 deletions clash_doc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[package]
name = "clash_doc"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clash_lib = { path = "../clash_lib" }
5 changes: 5 additions & 0 deletions clash_doc/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#[doc = "docs for clash"]
#[doc(inline)]
pub use clash_lib::ClashConfigDef;
#[doc(inline)]
pub use clash_lib::ClashDNSConfigDef;
3 changes: 2 additions & 1 deletion clash_lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ filetime = "0.2"
axum = { version = "0.6.20", features = ["ws"] }
tower-http = { version = "0.4.0", features = ["fs", "trace", "cors"] }
chrono = { version = "0.4.26", features = ["serde"] }
tun = "0.5"
tun = { version = "0.5", features = ["async"] }
netstack-lwip = { git = "https://github.com/Watfaq/netstack-lwip.git", rev = "4fef23" }


serde = { version = "1.0", features=["derive"] }
Expand Down
Loading

0 comments on commit 36be21c

Please sign in to comment.