-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (26 loc) · 767 Bytes
/
Cargo.toml
File metadata and controls
33 lines (26 loc) · 767 Bytes
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
[package]
name = "nx-request-handler"
version = "0.1.6"
authors = ["techyCoder81"]
edition = "2021"
license-file = "LICENSE"
description = "A Rust crate for streamlining messaging between Skyline Plugins and WebSessions."
readme = "README.md"
repository = "https://github.com/techyCoder81/nx-request-handler"
[package.metadata.skyline]
titleid = "01006A800016E000" # Smash Ultimate
[dependencies]
skyline = "0.2.1"
skyline-web = { version = "0.1.0", features = ["json"] }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
smashnet = "0.2.0"
md5 = "0.7.0"
walkdir = "2"
zip = { version = "0.6.2", default-features = false, features = ["deflate"] }
[features]
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
lto = true