-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (58 loc) · 1.7 KB
/
Cargo.toml
File metadata and controls
64 lines (58 loc) · 1.7 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
[[bin]]
name = "Download"
path = "Source/Download.rs"
[[bin]]
name = "SideCar"
path = "Source/main.rs"
[build-dependencies]
serde = { workspace = true, features = ["derive"] }
toml = { workspace = true }
tauri-build = { workspace = true }
[dependencies]
tokio = { workspace = true, features = ["full"] }
reqwest = { workspace = true, features = ["json"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
futures = { workspace = true }
tempfile = { workspace = true }
zip = { workspace = true }
tar = { workspace = true }
flate2 = { workspace = true }
colored = { workspace = true }
anyhow = { workspace = true }
num_cpus = { workspace = true }
log = { workspace = true }
env_logger = { workspace = true }
fs_extra = { workspace = true }
toml = { workspace = true }
# DEPENDENCY: Added tauri-plugin-shell for Tauri 2.x shell API support (shell() method on AppHandle)
tauri-plugin-shell = "2.0"
Mist = { workspace = true }
tauri = { workspace = true }
[lib]
path = "Source/Library.rs"
[package]
authors = ["Source 🖋️ Open 👐🏻 <Source/Open@Editor.Land>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
default-run = "SideCar"
description = "SideCar 🚃"
documentation = "https://Documentation.SideCar.Editor.Land"
edition = "2024"
homepage = "https://SideCar.Editor.Land"
license-file = "LICENSE"
name = "SideCar"
publish = false
repository = "https://github.com/CodeEditorLand/SideCar"
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",
]