Initial Version

This commit is contained in:
sijie.sun
2023-09-23 01:53:45 +00:00
commit 9779923b87
63 changed files with 10840 additions and 0 deletions

15
easytier-cli/Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "easytier-cli"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures = "0.3"
tokio = { version = "1", features = ["full"] }
anyhow = "1.0"
easytier-core = { path = "../easytier-core" }
clap = { version = "4.4.8", features = ["unicode", "derive", "wrap_help"] }
tonic = "0.10"
thiserror = "1.0"