-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (45 loc) · 1.29 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
47
48
49
50
51
52
53
[workspace]
resolver = "2"
members = ["macro", "parser"]
[lib]
doctest = false
[workspace.package]
license = "MIT"
version = "0.2.0"
[package]
name = "floem-css"
version.workspace = true
license.workspace = true
edition = "2021"
authors = ["Olli Paananen <[email protected]>"]
description = "Hot reloading css-like styles for Floem"
keywords = ["CSS", "Floem", "style", "reload"]
repository = "https://github.com/aalhitennf/floem-css"
readme = "README.md"
rust-version = "1.80"
publish = true
[dependencies]
floem.workspace = true
floem-css-parser.workspace = true
crossbeam-channel = { version = "0.5.13" }
notify = "7.0.0"
thiserror = "2.0.1"
log.workspace = true
smallvec.workspace = true
[workspace.dependencies]
log = "0.4.22"
smallvec = { version = "1.13.2", features = ["const_new"] }
floem = "0.2.0"
floem-css-parser = { path = "./parser", version = "0.2.0" }
[dev-dependencies]
env_logger = "0.11.5"
[build-dependencies]
floem-css-parser.workspace = true
[workspace.lints.clippy]
complexity = { level = "warn", priority = -1 }
correctness = { level = "deny", priority = -1 }
perf = { level = "deny", priority = -1 }
restriction = { level = "allow", priority = -1 }
style = { level = "warn", priority = -1 }
suspicious = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }