Merge pull request #97 from wuyumin/yumin-dev

This commit is contained in:
Sijie.Sun
2024-05-09 18:26:34 +08:00
committed by GitHub
6 changed files with 14 additions and 6 deletions
+3
View File
@@ -26,3 +26,6 @@ nohup.out
components.d.ts components.d.ts
musl_gcc musl_gcc
# log
easytier-panic.log
Generated
+2 -2
View File
@@ -387,7 +387,7 @@ dependencies = [
[[package]] [[package]]
name = "boringtun" name = "boringtun"
version = "0.6.0" version = "0.6.0"
source = "git+https://github.com/EasyTier/boringtun.git#449204c3eca736dc23b075d81426527a357e2f2a" source = "git+https://github.com/EasyTier/boringtun.git?rev=449204c#449204c3eca736dc23b075d81426527a357e2f2a"
dependencies = [ dependencies = [
"aead", "aead",
"atomic-shim", "atomic-shim",
@@ -1266,7 +1266,7 @@ checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
[[package]] [[package]]
name = "easytier" name = "easytier"
version = "1.0.0" version = "1.0.1-pre"
dependencies = [ dependencies = [
"aes-gcm", "aes-gcm",
"anyhow", "anyhow",
+5
View File
@@ -8,3 +8,8 @@ panic = "unwind"
[profile.release] [profile.release]
panic = "unwind" panic = "unwind"
# panic = "abort"
# lto = true
# codegen-units = 1
# strip = true
# opt-level = "z"
+2 -2
View File
@@ -3,7 +3,7 @@ name = "easytier"
description = "A full meshed p2p VPN, connecting all your devices in one network with one command." description = "A full meshed p2p VPN, connecting all your devices in one network with one command."
homepage = "https://github.com/KKRainbow/EasyTier" homepage = "https://github.com/KKRainbow/EasyTier"
repository = "https://github.com/KKRainbow/EasyTier" repository = "https://github.com/KKRainbow/EasyTier"
version = "1.0.0" version = "1.0.1-pre"
edition = "2021" edition = "2021"
authors = ["kkrainbow"] authors = ["kkrainbow"]
keywords = ["vpn", "p2p", "network", "easytier"] keywords = ["vpn", "p2p", "network", "easytier"]
@@ -127,7 +127,7 @@ network-interface = "1.1.1"
pathfinding = "4.9.1" pathfinding = "4.9.1"
# for encryption # for encryption
boringtun = { git = "https://github.com/EasyTier/boringtun.git", optional = true } boringtun = { git = "https://github.com/EasyTier/boringtun.git", optional = true, rev = "449204c" }
ring = { version = "0.17", optional = true } ring = { version = "0.17", optional = true }
bitflags = "2.5" bitflags = "2.5"
aes-gcm = { version = "0.10.3", optional = true } aes-gcm = { version = "0.10.3", optional = true }
+1 -1
View File
@@ -25,7 +25,7 @@ use humansize::format_size;
use tabled::settings::Style; use tabled::settings::Style;
#[derive(Parser, Debug)] #[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)] #[command(name = "easytier-cli", author, version, about, long_about = None)]
struct Cli { struct Cli {
/// the instance name /// the instance name
#[arg(short = 'p', long, default_value = "127.0.0.1:15888")] #[arg(short = 'p', long, default_value = "127.0.0.1:15888")]
+1 -1
View File
@@ -41,7 +41,7 @@ use mimalloc_rust::*;
static GLOBAL_MIMALLOC: GlobalMiMalloc = GlobalMiMalloc; static GLOBAL_MIMALLOC: GlobalMiMalloc = GlobalMiMalloc;
#[derive(Parser, Debug)] #[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)] #[command(name = "easytier-core", author, version, about, long_about = None)]
struct Cli { struct Cli {
#[arg( #[arg(
short, short,