-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
90 lines (83 loc) · 2.34 KB
/
Copy pathCargo.toml
File metadata and controls
90 lines (83 loc) · 2.34 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[package]
name = "monoxide"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true
readme = "README.md"
[dependencies]
anyhow.workspace = true
monoxide-font.workspace = true
monoxide-script.workspace = true
tracing-subscriber.workspace = true
[dev-dependencies]
dioxus-devtools.workspace = true
monoxide-playground.workspace = true
tokio.workspace = true
[lints.rust]
rust_2018_idioms = { level = "deny", priority = -1 }
missing_copy_implementations = "warn"
missing_debug_implementations = "warn"
trivial_numeric_casts = "warn"
unused_allocation = "warn"
[lints.clippy]
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
dbg_macro = "warn"
todo = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
wildcard_imports = "allow"
[workspace]
members = [
".",
"crates/monoxide-curves",
"crates/monoxide-font",
"crates/monoxide-playground",
"crates/monoxide-script",
"crates/monoxide-spiro",
"crates/monoxide-ttf",
"crates/sirop",
"xtask",
]
[workspace.package]
authors = [
"rami3l <rami3l@outlook.com>",
"Rynco Maekawa <lynzrand@outlook.com>",
]
edition = "2024"
homepage = "https://github.com/Pangpang-Studio/monoxide"
license = "GPL-3.0-only WITH Font-exception-2.0"
repository = "https://github.com/Pangpang-Studio/monoxide"
version = "0.1.0"
[workspace.dependencies]
# Monoxide itself
monoxide = { path = "." }
monoxide-curves = { path = "crates/monoxide-curves" }
monoxide-font = { path = "crates/monoxide-font" }
monoxide-playground = { path = "crates/monoxide-playground" }
monoxide-script = { path = "crates/monoxide-script" }
monoxide-spiro = { path = "crates/monoxide-spiro" }
monoxide-ttf = { path = "crates/monoxide-ttf" }
sirop = { path = "crates/sirop" }
# Deps
anyhow = "1.0.102"
bytes = "1.11.1"
clap = { version = "4.6.0", features = ["derive"] }
dioxus-devtools = "0.7.9"
indexmap = "2.14.0"
kurbo = { version = "0.13.1", features = ["serde"] }
num-traits = "0.2.19"
serde = { version = "1", features = ["derive"] }
tokio = { version = "1.52.3" }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
thiserror = "2.0"
petgraph = "0.8.3"
by_address = "1.2.1"
itertools = "0.15.0"
# Dev-deps
snapbox = "1.2.2"