Restructure the project tree

This commit is contained in:
moznion
2020-11-29 12:45:35 +09:00
parent 388abee17a
commit 0ef10d8554
31 changed files with 113 additions and 149 deletions

25
examples/Cargo.toml Normal file
View File

@@ -0,0 +1,25 @@
[package]
name = "examples"
version = "0.1.0"
publish = false
edition = "2018"
license-file = "../LICENSE"
repository = "https://github.com/moznion/radius-rs"
[dev-dependencies]
radius = { version = "0.1.0", path = "../radius" }
radius-client = { version = "0.1.0", path = "../radius-client" }
radius-server = { version = "0.1.0", path = "../radius-server" }
log = "0.4.11"
env_logger = "0.8.2"
tokio = { version = "0.3.4", features = ["signal", "net"] }
async-trait = "0.1.42"
[[example]]
name = "server"
path = "server.rs"
[[example]]
name = "client"
path = "client.rs"