forked from lavina/lavina
1
0
Fork 0

init crate

This commit is contained in:
Nikita Vilunov 2023-09-22 23:50:38 +02:00
parent 58f6a5d90a
commit 4433666b55
4 changed files with 18 additions and 0 deletions

7
Cargo.lock generated
View File

@ -1614,6 +1614,13 @@ dependencies = [
"rand_core",
]
[[package]]
name = "sim-irc"
version = "0.0.1-dev"
dependencies = [
"proto-irc",
]
[[package]]
name = "slab"
version = "0.4.9"

View File

@ -2,6 +2,7 @@
members = [
".",
"crates/proto-irc",
"crates/sim-irc",
"crates/mgmt-api",
]

View File

@ -0,0 +1,7 @@
[package]
name = "sim-irc"
edition = "2021"
version.workspace = true
[dependencies]
proto-irc = { path = "../proto-irc" }

View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}