-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (37 loc) · 994 Bytes
/
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
[package]
name = "swrs"
description = "A simple rust library that reads and parses a sketchware project"
homepage = "https://github.com/Iyxan23/swrs"
repository = "https://github.com/Iyxan23/swrs"
readme = "README.md"
authors = ["Iyxan23 <[email protected]>"]
version = "0.1.1"
edition = "2021"
license = "MIT"
keywords = ["sketchware", "sw", "parse", "reconstruct"]
categories = ["parsing", "parser-implementations"]
exclude = [
".idea",
".github"
]
[features]
default = ["api"]
resource_id_random = ["dep:rand"]
api = []
# https://stackoverflow.com/a/54842093/9613353
[profile.release]
opt-level = 'z'
lto = true
codegen-units = 1
panic = 'abort'
strip = true
[dependencies]
aes = "^0.7.5"
block-modes = "^0.8.1"
chrono = { version = "^0.4.19", default-features = false, features = ["std"] }
serde = { version = "^1", features = ["derive"] }
serde_json = "^1"
serde_repr = "^0.1.7"
ritelinked = "0.3.2"
thiserror = "^1.0.30"
rand = { version = "0.8.5", optional = true }