-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (37 loc) · 1.04 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 = "funnybones"
version = "0.1.0"
edition = "2021"
[features]
editor = ["serde", "cushy", "dep:rsn", "dep:tempfile", "dep:rfd"]
cushy = ["dep:cushy"]
serde = ["dep:serde", "easing-function/serde"]
[[example]]
name = "skeleton"
required-features = ["cushy"]
[[bin]]
name = "FunnyBones"
path = "src/funnybones.rs"
required-features = ["editor"]
[dependencies]
serde = { version = "1.0.208", optional = true, features = ["derive"] }
easing-function = "0.1.0"
# Editor dependencies
cushy = { git = "https://github.com/khonsulabs/cushy", optional = true, features = [
"serde",
] }
rsn = { version = "0.1", optional = true }
tempfile = { version = "3.12.0", optional = true }
rfd = { version = "0.14.1", optional = true }
[dev-dependencies]
pot = "3.0.0"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
[lints.rust]
unsafe_code = "forbid"
missing_docs = "warn"
# [patch."https://github.com/khonsulabs/cushy"]
# cushy = { path = "../cushy" }