-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (50 loc) · 1.36 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
[package]
authors = ["Amazingkenneth <[email protected]>"]
description = "这是一个纪实性项目;打开它,一起回忆过往美好初中生活。"
edition = "2021"
name = "graduate"
readme = "README.md"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
build = "build.rs"
license = "GPL-3.0"
repository = "https://github.com/Amazingkenneth/graduate"
[target.'cfg(windows)'.build-dependencies]
embed-resource = "2.1"
[dependencies]
directories = "5"
iced = { git = "https://github.com/iced-rs/iced.git", features = [
"image",
"svg",
"tokio",
] }
iced_core = { git = "https://github.com/iced-rs/iced.git" }
image = "0.24"
rand = "0"
reqwest = "0"
rodio = { version = "0", default-features = false, features = [
"symphonia-all",
] }
serde = { version = "1", features = ["derive"] }
time = { version = "0.3", features = ["macros", "parsing", "serde"] }
tokio = { version = "1.26", features = ["full"] }
toml = "0"
[profile.release]
codegen-units = 1
lto = "fat"
panic = "abort"
strip = true # Automatically strip symbols from the binary.
[package.metadata.deb]
assets = [
[
"graduate.desktop",
"usr/share/applications/",
"644",
],
[
"target/release/graduate",
"usr/bin/graduate",
"755",
],
]
depends = "libasound2-dev"