-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 882 Bytes
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 882 Bytes
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
[workspace]
resolver = "2"
members = [
"crates/*",
"py-logger",
]
default-members = [
"crates/*",
]
[workspace.package]
version = "0.6.0"
authors = ["Steven Forrester <sjforrester32@gmail.com>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/demml/opsml"
[workspace.dependencies]
rusty-logging = { path = "crates/rusty_logger" }
dynfmt = { version = "0.*", features = ["curly"] }
owo-colors = "4.*"
pyo3 = { version = "0.*", features = ["extension-module", "anyhow", "serde", "chrono"] }
serde = { version = "1.*", features = ["derive"] }
serde_json = "1.*"
thiserror = "2.*"
time = "0.*"
tracing = "0.*"
tracing-appender = "0.*"
tracing-core = "0.*"
tracing-subscriber = {version = "0.*", features = ["json", "time"]}
[profile.release]
lto = "fat"
codegen-units = 1
strip = true
opt-level = 3
[profile.release-no-lto]
inherits = "release"
lto = false