Skip to content

Commit

Permalink
feat:初始化项目
Browse files Browse the repository at this point in the history
  • Loading branch information
SyhanLiu committed Jun 1, 2023
1 parent 250ed51 commit 41ef225
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/rrt/target
/shlrt/target
/Cargo.lock


Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[workspace]

members = [
"rrt",
"rrt-macros",
"shlrt",
"shlrt-macros",

"example"
]
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# rrt
Rust runtime
# shlrt
Rust runtime for SyhanLiu
8 changes: 4 additions & 4 deletions example/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
edition = "2021"
name = "rrt-example"
name = "shlrt-example"
version = "0.0.0"

[dev-dependencies]
rrt = {path = "../rrt", version = "0.0.1"}
rrt-macros = {path = "../rrt-macros", version = "0.0.1"}
[dependencies]
shlrt = {path = "../shlrt", version = "0.0.1"}
shlrt-macros = {path = "../shlrt-macros", version = "0.0.1"}

[[example]]
name = "tcp_echo"
Expand Down
4 changes: 2 additions & 2 deletions rrt-macros/Cargo.toml → shlrt-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
authors = ["Syhan <[email protected]>"]
name = "monoio-macros"
name = "shlrt-macros"
version = "0.0.1"
edition = "2021"
license = "MIT/Apache-2.0"
description = "Rrt proc macros"
description = "shlrt proc macros"

[lib]
proc-macro = true
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions rrt/Cargo.toml → shlrt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "rrt"
name = "shlrt"
version = "0.0.1"
edition = "2021"

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

[dependencies]
rrt-macros = {path="../rrt-macros", optional = true}
shlrt-macros = {path= "../shlrt-macros"}
libc = "0.2.144"
io-uring = "0.6.0"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 41ef225

Please sign in to comment.