This repository has been archived by the owner on Dec 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
105 lines (99 loc) · 2.78 KB
/
Cargo.toml
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
[package]
name = "uwe"
version = "0.50.0"
authors = ["muji <[email protected]>"]
description = "Universal web editor"
repository = "https://github.com/uwe-app/app"
edition = "2018"
default-run = "uwe"
[workspace]
members = [
"components/collator",
"components/collections",
"components/compiler",
"components/config",
"components/dirs",
"components/frontmatter",
"components/livereload",
"components/locale",
"components/minify",
"components/plugin",
"components/preference",
"components/project",
"components/publisher",
"components/release",
"components/scm",
"components/server",
"components/syntax",
"components/toc",
"components/transform",
"components/utils",
"components/workspace",
]
[dependencies]
collections = {version = "0.1", path = "components/collections" }
compiler = {version = "0.1", path = "components/compiler" }
config = {version = "0.1", path = "components/config" }
dirs = {version = "0.1", path = "components/dirs" }
livereload = {version = "0.1", path = "components/livereload" }
locale = {version = "0.1", path = "components/locale" }
plugin = {version = "0.1", path = "components/plugin" }
preference = {version = "0.1", path = "components/preference" }
project = {version = "0.1", path = "components/project" }
publisher = {version = "0.1", path = "components/publisher" }
release = {version = "0.1", path = "components/release" }
scm = {version = "0.1", path = "components/scm" }
server = {version = "0.1", path = "components/server" }
#ui = {version = "0.1", path = "components/ui" }
utils = {version = "0.1", path = "components/utils" }
workspace = {version = "0.1", path = "components/workspace" }
futures = "0.3"
thiserror = "1"
open = "1.1"
structopt = {version = "^0.3.21", features = ["wrap_help"]}
log = "0.4.8"
pretty_env_logger = "0.4"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1"
toml = { version = "0.5", features = ["preserve_order"] }
semver = "0.10"
once_cell = "1.4"
hex = "0.4.2"
human_bytes = "0.2.1"
url = "2"
unic-langid = "0.9.0"
tokio = { version = "^1.0", features = ["full"] }
pbr = "1.0.4"
rusoto_core = {version = "0.48.0", default-features = false, features = ["rustls"]}
psup-impl = "0.6.3"
#psup-impl = { version = "0.6", path = "/home/muji/git/psup/impl" }
libc = "0.2"
ctrlc = { version = "3", features = ["termination"] }
# uwe-shim
winapi = "0.3"
[profile.release]
#panic = "abort"
lto = true
codegen-units = 1
opt-level = "z"
[package.metadata.bundle]
identifier = "app.uwe"
deb_depends = [
"libwebkit2gtk-4.0-37",
#"libgtk-3",
#"libgdk-3",
#"libcairo",
#"libgdk_pixbuf-2.0",
#"libgio-2.0",
#"libgobject-2.0",
#"libjavascriptcoregtk-4.0",
#"libglib-2.0",
#"libz",
#"liblzma",
#"libgcc_s",
#"librt",
#"libpthread",
#"libm",
#"libdl",
]
osx_minimum_system_version = "10.13"