-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
56 lines (49 loc) · 1.66 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
[package]
name = "vita-save-cloud"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[patch.crates-io]
# Required for rustls
ring = { git = "https://github.com/vita-rust/ring", branch = "v0.16.20-vita" }
[dependencies]
save_cloud_api = { version = "1.0", path = "../save-cloud-api" }
rustls = "=0.21.7"
sct = "=0.7.0"
ring = "=0.16.20"
rustls-webpki = "=0.101.6"
serde = { version = "1.0", features = ["derive"] }
serde_urlencoded = "0.7.1"
serde_json = "1.0.108"
percent-encoding = "2.3.1"
mime = "0.3.17"
mime_guess = "2.0.4"
ureq_multipart = "1.1.1"
ureq = { version = "2.9.1", default-features = false, features = ["tls", "json"] }
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "time"] }
log = { version = "0.4.20", features = ["std"]}
zip = { version = "0.6.6", default-features = false, features = ["deflate", "deflate-miniz", "deflate-zlib", "time"] }
qrcode-generator = "4.1.9"
base64 = "0.21.5"
md5 = "0.7.0"
[build-dependencies]
cc = "1.0"
[profile.release]
panic = "unwind"
lto = true
opt-level = 3
[package.metadata.vita]
# A unique identifier for your project. 9 chars, alphanumeric.
title_id = "SAVECLOUD"
# A title that will be shown on a bubble. Optional, will take the crate name as the default
title_name = "Save Cloud"
# Optional. A path to static files relative to the project.
assets = "assets"
# Optional, this is the default
build_std = "std,panic_unwind"
# Optional, this is the default
vita_strip_flags = ["-g"]
# Optional, this is the default
vita_make_fself_flags = []
# Optional, this is the default
vita_mksfoex_flags = ["-d", "ATTRIBUTE2=12"]