forked from burningtnt/Terracotta
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (60 loc) · 1.91 KB
/
Cargo.toml
File metadata and controls
67 lines (60 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "terracotta"
version = "2.5.0-pcl.proto"
edition = "2024"
build = "build.rs"
[package.metadata.easytier]
version = "v2.5.0-terracotta.2"
[dependencies]
cfg-if = "1.0.1"
chrono = { version = "0.4.41", default-features = false, features = [
"clock",
"std",
"alloc",
] }
lazy_static = "1.5.0"
libc = "0.2.174"
local-ip-address = "0.6.7"
num-bigint = "0.4.6"
open = { version = "5.3.2", default-features = false }
rand_core = { version = "0.9.3", features = ["os_rng"] }
rocket = { version = "0.5.1", default-features = false, features = ["json"] }
serde = "1.0.219"
serde_json = "1.0.141"
sevenz-rust2 = { version = "0.18.0", default-features = false, features = [
"util",
] }
socket2 = "0.6.0"
winapi = { version = "0.3.9", default-features = false, features = ["winbase", "wincon", "handleapi", "processenv", "consoleapi", "sysinfoapi", "tlhelp32", "synchapi", "processthreadsapi", "minwindef"] }
reqwest = { version = "0.12.22", default-features = false, features = ["charset", "http2", "rustls-tls", "deflate", "blocking"]}
timestamp = { path = "timestamp" }
hex = "0.4.3"
rand_chacha = "0.9.0"
parking_lot = "0.12.4"
easytier = { git = "https://github.com/EasyTier/EasyTier.git", branch = "main"}
# These libraries are the necessities to interact with EasyTier. DO NOT upgrade their version.
uuid = "1"
toml = "0"
tokio = "1"
cidr = { version = "0", features = ["serde"] }
[target.'cfg(target_os = "macos")'.dependencies]
objc2 = "0.6.1"
objc2-app-kit = "0.3.1"
objc2-foundation = "0.3.1"
objc2-web-kit = "0.3.1"
native-dialog = "0.9.0"
[target.'cfg(target_os = "android")'.dependencies]
jni = { version = "0.21.1", features = ["invocation"] }
[build-dependencies]
winresource = "0.1"
sevenz-rust2 = { version = "0.18.0", default-features = false, features = [
"compress",
"util",
] }
toml = "0.9.4"
[lib]
name = "terracotta"
crate-type = ["lib", "cdylib"]
[[bin]]
name = "terracotta-exe"
path = "src/main.rs"