generated from finos/software-project-blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (57 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
66 lines (57 loc) · 1.48 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
[workspace]
members = [
"crates/*",
]
resolver = "2"
# Don't build examples by default (morphir-ext-example needs wasm32 target)
default-members = [
"crates/morphir",
"crates/morphir-builtins",
"crates/morphir-common",
"crates/morphir-core",
"crates/morphir-daemon",
"crates/morphir-design",
"crates/morphir-ext",
"crates/morphir-ext-core",
"crates/morphir-extension-sdk",
"crates/morphir-gleam-binding",
"crates/morphir-runtime",
"crates/morphir-wasm-binding",
]
[workspace.package]
version = "0.2.0"
edition = "2024"
rust-version = "1.85"
authors = ["FINOS <info@finos.org>"]
license = "Apache-2.0"
repository = "https://github.com/finos/morphir-rust"
homepage = "https://github.com/finos/morphir-rust"
documentation = "https://docs.rs/morphir-rust"
keywords = ["morphir", "functional", "domain-modeling", "ir"]
categories = ["development-tools", "parsers"]
[workspace.dependencies]
# CLI framework
starbase = "0.10"
clap = { version = "4.5", features = ["derive"] }
anyhow = "1.0"
thiserror = "2.0"
miette = { version = "7", features = ["fancy"] }
# TUI
ratatui = "0.30"
crossterm = "0.29"
tuirealm = "3"
tui-realm-stdlib = "3"
tui-realm-textarea = "2"
# Structured logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
tracing-appender = "0.2"
# Functional programming utilities
# Add more as needed
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
[profile.dev]
opt-level = 0
debug = true