-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (59 loc) · 1.58 KB
/
Copy pathCargo.toml
File metadata and controls
68 lines (59 loc) · 1.58 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
[workspace]
members = ["crates/*"]
default-members = ["crates/morphir"]
resolver = "3"
[workspace.package]
version = "0.4.0-alpha.5"
edition = "2024"
rust-version = "1.98"
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 = { version = "0.13", features = ["miette"] }
clap = { version = "4.5.57", features = ["derive", "color"] }
anyhow = "1.0"
thiserror = "2.0.18"
miette = { version = "7", features = ["fancy"] }
cucumber = "0.22"
vfs = "0.13"
# TUI
ratatui = "0.30"
crossterm = "0.29"
tuirealm = "4"
tui-realm-stdlib = "4"
tui-realm-textarea = "4"
# Structured logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
tracing-appender = "0.2"
fs2 = "0.4"
# Filesystem and path handling shared with morphir-rust crates
cap-std = "4.0.0"
cap-fs-ext = "4.0.0"
same-file = "1.0.6"
unicode-casefold = "0.2"
unicode-normalization = "0.1"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde-saphyr = { version = "1", default-features = false, features = ["deserialize", "serialize"] }
stacker = "0.1"
toml = "1.0.0"
tempfile = "3"
semver = "1"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
[profile.dev]
opt-level = 0
debug = true