-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (50 loc) · 1.35 KB
/
Cargo.toml
File metadata and controls
60 lines (50 loc) · 1.35 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
[workspace]
members = ["crates/*"]
default-members = ["crates/morphir-live", "crates/morphir"]
resolver = "3"
[workspace.package]
version = "0.1.0"
edition = "2024"
rust-version = "1.93"
authors = [
"FINOS <info@finos.org>",
"Damian Reeves <957246+DamianReeves@users.noreply.github.com>",
]
license = "Apache-2.0"
repository = "https://github.com/finos/morphir"
homepage = "https://github.com/finos/morphir"
documentation = "https://docs.rs/morphir"
keywords = ["morphir", "functional", "domain-modeling", "ir"]
categories = ["development-tools", "parsers"]
[workspace.dependencies]
# CLI framework
starbase = "0.10"
clap = { version = "4.5.57", features = ["derive", "color"] }
anyhow = "1.0"
thiserror = "2.0.18"
miette = { version = "7", features = ["fancy"] }
# TUI
ratatui = "0.30"
crossterm = "0.29"
tuirealm = "3"
tui-realm-stdlib = "3"
tui-realm-textarea = "2"
# UI framework
dioxus = { version = "0.7.3", features = ["web", "router"] }
# Structured logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
tracing-appender = "0.2"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.9.8"
# WASM utilities
gloo-timers = { version = "0.3", features = ["futures"] }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
[profile.dev]
opt-level = 0
debug = true