-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
65 lines (51 loc) · 1.32 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
[package]
name = "garnet"
version = "0.0.0"
authors = ["Nicole Mazzuca <nicole@strega-nil.co>"]
edition = "2018"
description = "A cross-platform locale-sensitive gemini browser"
license = "Apache-2.0"
homepage = "https://github.com/strega-nil/garnet"
repository = "https://github.com/strega-nil/garnet"
documentation = "https://github.com/strega-nil/garnet"
[features]
# This is installed on the system; look in the system directories for resources
# as opposed to in the directory of the exe
system_install = []
[[bin]]
name = "garnet"
path = "src/gui.rs"
[[bin]]
name = "garnet-cli"
path = "src/cli.rs"
[workspace]
members = [
".",
"garnet-core",
"garnet-cli",
#"garnet-win",
"garnet-gtk",
#"garnet-mac",
]
[build-dependencies.anyhow]
version = "1.0.31"
[dependencies.garnet-core]
version = "0.0.0"
[dependencies.garnet-cli]
version = "0.0.0"
[target.'cfg(target_os="windows")'.dependencies.garnet-win]
version = "0.0.0"
[target.'cfg(target_os="linux")'.dependencies.garnet-gtk]
version = "0.0.0"
[target.'cfg(target_os="macos")'.dependencies.garnet-mac]
version = "0.0.0"
[patch.crates-io.garnet-core]
path = "garnet-core"
[patch.crates-io.garnet-cli]
path = "garnet-cli"
[patch.crates-io.garnet-win]
path = "garnet-win"
[patch.crates-io.garnet-gtk]
path = "garnet-gtk"
[patch.crates-io.garnet-mac]
path = "garnet-mac"