blob: b283af25c6696f92b4412cb9949e01d1c4f517bb (
plain)
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
|
[workspace]
members = [ "crates/*" ]
resolver = "3"
[workspace.package]
version = "0.3.0"
edition = "2024"
license = "MPL-2.0"
homepage = "https://hjem.feel-co.org"
repository = "https://github.com/feel-co/hjem"
rust-version = "1.95.0"
readme = "./README.md"
[workspace.dependencies]
hjem-core = { path = "crates/hjem-core", version = "0.3.0" }
jiff = { version = "0.2.35", default-features = false, features = [ "std" ] }
pound = "0.1.6"
serde = { version = "1.0.229", features = [ "derive" ] }
serde_json = "1.0.151"
smfh-core = "1.7.1"
tracing = "0.1.44"
tracing-subscriber = "0.3.23"
[profile.release]
strip = "symbols"
|