-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (40 loc) · 1.14 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
[package]
name = "erosion"
version = "0.1.0"
description = "A Tauri App"
authors = [ "Taylor Thompson <[email protected]>" ]
license = ""
repository = ""
default-run = "erosion"
edition = "2018"
[dependencies]
directories = "3.0.1"
serde_json = "1.0.61"
chrono = "0.4.19"
uuid = { version = "0.8.1", features = [ "v4", "serde" ] }
serde = { version = "1.0.118", features = [ "derive" ] }
tokio = { version = "1", features = ["full"] }
warp = "0.3"
web-view = { git = "https://github.com/jamestthompson3/web-view", branch = "block-loop", features = ["edge"]}
[package.metadata.bundle]
name = "Erosion"
identifier = "com.t_t.erosion"
version = "0.0.1"
resources = ["front/build/*", "front/fonts/*", "front/styles/*", "front/index.html", "front/index.css", "front/media/*"]
copyright = "Copyright (c) Taylor Thompson 2020-2021. All rights reserved."
category = "Productivity"
short_description = "Chip away at your most ambitious goals"
long_description = """
Longer description
"""
deb_depends = []
osx_frameworks = []
[[bin]]
name = "erosion"
path = "src/main.rs"
[profile.release]
panic = "abort"
codegen-units = 1
lto = true
incremental = false
opt-level = "z"