Skip to content

Commit c4a201a

Browse files
committed
update
1 parent 6b121ad commit c4a201a

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ default-members = [
99
]
1010

1111
[workspace.package]
12-
version = "0.1.0"
12+
version = "0.4.0"
1313
authors = ["Steven Forrester <[email protected]>"]
1414
edition = "2021"
1515
license = "MIT"
1616
repository = "https://github.com/demml/opsml"
1717

1818
[workspace.dependencies]
19-
rusty-logger = { path = "crates/rusty_logger" }
19+
rusty-logging = { path = "crates/rusty_logger" }
2020
dynfmt = { version = "0.*", features = ["curly"] }
2121
owo-colors = "4.*"
2222
pyo3 = { version = "0.23", features = ["extension-module", "anyhow", "serde", "chrono"] }

crates/rusty_logger/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "rusty-logger"
2+
name = "rusty-logging"
33
version = { workspace = true }
44
edition = { workspace = true }
55
repository = { workspace = true }

py-logger/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ name = "py_rusty_logger"
88
crate-type = ["cdylib", "rlib"]
99

1010
[dependencies]
11-
rusty-logger = { workspace = true }
11+
rusty-logging = { workspace = true }
1212
pyo3 = { workspace = true }

py-logger/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use ::rusty_logger::logger::{LogLevel, LoggingConfig, RustyLogger, WriteLevel};
1+
use ::rusty_logging::logger::{LogLevel, LoggingConfig, RustyLogger, WriteLevel};
22
use pyo3::prelude::*;
33
/// Python implementation for the Rusty Logger
44
///

0 commit comments

Comments
 (0)