-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·57 lines (51 loc) · 1.09 KB
/
Cargo.toml
File metadata and controls
executable file
·57 lines (51 loc) · 1.09 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
[build-dependencies]
serde = { workspace = true }
toml = { workspace = true }
[dependencies]
tauri = { workspace = true, features = [
"wry",
"tray-icon",
"devtools",
"rustls-tls",
"compression",
], default-features = false }
async-trait = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
url = { workspace = true }
[features]
default = []
[lib]
crate-type = ["rlib"]
name = "CommonLibrary"
path = "Source/Library.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
description = "Common 🧑🏻🏭"
edition = "2024"
include = [
"Source/**/*",
"LICENSE",
"README.md",
"CHANGELOG.md",
"build.rs",
"Cargo.toml",
]
license-file = "LICENSE"
name = "Common"
publish = false
repository = "https://github.com/CodeEditorLand/Common"
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",
]