-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·192 lines (176 loc) · 5.65 KB
/
Cargo.toml
File metadata and controls
executable file
·192 lines (176 loc) · 5.65 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
[[bin]]
name = "Mountain"
path = "Source/Library.rs"
[build-dependencies]
json5 = { workspace = true }
toml_edit = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
tauri-build = { workspace = true, features = [] }
toml = { workspace = true }
tonic-build = { workspace = true, features = ["transport"] }
tonic-prost-build = { workspace = true }
[dev-dependencies]
tokio-test = { workspace = true }
futures = { workspace = true }
[dependencies]
tauri = { workspace = true, features = [
"compression",
"devtools",
"image-png",
"rustls-tls",
"tray-icon",
"wry",
], default-features = false }
tauri-plugin-dialog = { workspace = true }
tauri-plugin-fs = { workspace = true }
tauri-plugin-localhost = { workspace = true }
tauri-plugin-log = { workspace = true }
async-trait = { workspace = true }
anyhow = { workspace = true } # TODO: Added for error handling in CertificateManager
arboard = { workspace = true }
base64 = { workspace = true }
chrono = { workspace = true, features = ["serde"] }
colored = { workspace = true }
Common = { workspace = true }
dirs = { workspace = true }
Echo = { workspace = true }
Air = { workspace = true, optional = true }
Mist = { workspace = true }
env_logger = { workspace = true }
futures-util = { workspace = true, features = ["sink", "std"] }
globset = { workspace = true }
grep-regex = { workspace = true }
grep-searcher = { workspace = true }
http = { workspace = true }
ignore = { workspace = true }
keyring = { workspace = true }
lazy_static = { workspace = true }
log = { workspace = true }
md5 = { workspace = true }
notify = { workspace = true }
num_cpus = { workspace = true }
once_cell = { workspace = true }
open = { workspace = true }
parking_lot = { workspace = true }
portable-pty = { workspace = true }
portpicker = { workspace = true }
prost = { workspace = true }
rand = { workspace = true }
regex = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
sha2 = { workspace = true }
sysinfo = { workspace = true }
hostname = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["full"] }
tokio-tungstenite = { workspace = true, features = ["rustls-tls-native-roots"] }
tokio-util = { workspace = true, features = ["full"] }
pem = { workspace = true }
rcgen = { workspace = true }
p256 = { workspace = true }
x509-parser = { workspace = true }
rustls-pki-types = { workspace = true }
rustls = { workspace = true } # TODO: Added for TLS configuration in CertificateManager
toml = { workspace = true }
tonic = { workspace = true }
tonic-prost = { workspace = true }
url = { workspace = true, features = ["serde"] }
uuid = { workspace = true, features = ["v4", "serde"] }
flate2 = { workspace = true }
ring = { workspace = true }
bincode = { workspace = true }
brotli = { workspace = true }
hex = { workspace = true }
opentelemetry = { workspace = true, features = ["trace"] }
posthog-rs = { workspace = true }
zip = { workspace = true }
[features]
default = ["ExtensionHostCocoon", "MistNative", "AirIntegration"]
ExtensionHostCocoon = []
MistNative = []
Debug = []
AirIntegration = ["Air"]
# Feature flags for conditional compilation
grove = []
cocoon = []
terminals = []
debug-protocol = []
scm-support = []
child-processes = []
Telemetry = []
Development = []
Test = []
# ===========================================================================
# Tier-gating (Plan A §Rust feature flags). Every name here is mirrored by
# `build.rs::IsDeclaredTierFeature`. Adding a new tier requires editing
# BOTH places so typos in `.env.Land` fail loud.
# ===========================================================================
# Tier:RemoteProcedureCall:SharedMemory 🟣 Experimental
TierRemoteProcedureCallSharedMemory = []
# Tier:HTTPProxy:Hyper 🟣 Experimental
TierHTTPProxyHyper = []
# Tier:Logger:Ring 🟣 Experimental
TierLoggerRing = []
# Tier:FileSystem:Layer4 🟣 Experimental
TierFileSystemLayer4 = []
# Tier:FindFiles:Layer4 🟣 Experimental
TierFindFilesLayer4 = []
# Tier:Glob:Native 🟣 Experimental - globset-compiled patterns
TierGlobNative = []
# Tier:FileWatcher:Layer4 🟣 Experimental - notify-rs FS events (dep is already on the crate)
TierFileWatcherLayer4 = []
# Tier:SchemeAssets:Hybrid 🟣 Experimental
TierSchemeAssetsHybrid = []
# Tier:Configuration:Eager 🟣 Experimental
TierConfigurationEager = []
# Tier:Diagnostics:Delta 🟣 Experimental
TierDiagnosticsDelta = []
# Tier:Clipboard:Layer4 🟣 Experimental - arboard crate is on the crate unconditionally
TierClipboardLayer4 = []
# Tier:OpenExternal:Layer4 🟣 Experimental - `open` crate is on the crate unconditionally
TierOpenExternalLayer4 = []
# Tier:ExtensionScan:Parallel 🟣 Experimental
TierExtensionScanParallel = []
[lib]
name = "Mountain"
path = "Source/Library.rs"
crate-type = ["lib", "staticlib"]
[package]
authors = ["Source 🖋️ Open 👐🏻 <Source/Open@Editor.Land>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
default-run = "Mountain"
description = "Mountain ⛰️"
edition = "2021"
license-file = "LICENSE"
name = "Mountain"
publish = false
include = [
"build.rs",
"capabilities/**/*",
"Cargo.toml",
"CHANGELOG.md",
"gen/**/*",
"icons/**/*",
"LICENSE",
"Mountain.key.pub",
"Proto/**/*",
"README.md",
"Source/**/*",
"tauri.conf.json",
"Test/**/*",
]
version = "0.0.1"
[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
all-features = true
default-target = "x86_64-unknown-linux-gnu"
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
]