-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 910 Bytes
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 910 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
32
33
34
35
36
[package]
name = "display3d"
description = "A tool to display 3d objects in the terminal"
version = "0.2.2"
edition = "2024"
license = "MIT OR Apache-2.0"
repository = "https://github.com/renpenguin/display3d"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["stl", "obj"]
stl = ["dep:stl_io"]
obj = ["dep:tobj"]
[dependencies]
clap = { version = "4.5.32", features = ["derive"] }
ctrlc = "3.4.5"
gemini-engine = "1.2.0"
glam = "0.28.0"
stl_io = { version = "0.8.5", optional = true }
tobj = { version = "4.0.3", optional = true }
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
enum_glob_use = "warn"
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
unwrap_used = "warn"
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
cast_possible_wrap = "allow"