Skip to content

Commit

Permalink
fix google
Browse files Browse the repository at this point in the history
  • Loading branch information
thorrester committed Nov 15, 2024
1 parent 135d797 commit d81ef01
Show file tree
Hide file tree
Showing 9 changed files with 700 additions and 343 deletions.
223 changes: 221 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
resolver = "2"
members = [
"crates/opsml_storage",
"crates/opsml_server",
"opsml_storage_s3",
"opsml_storage_gcs",
"opsml_storage_local",
Expand All @@ -19,8 +20,8 @@ repository = "https://github.com/demml/opsml-core"


[workspace.dependencies]
pyo3 = { version = "0.22", features = ["experimental-async"] }
opsml-storage = { path = "crates/opsml_storage" }
opsml-server = { path = "crates/opsml_server" }

[profile.release]
lto = "fat"
Expand Down
33 changes: 33 additions & 0 deletions crates/opsml_server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
[package]
name = "opsml-server"
version = { workspace = true }
edition = { workspace = true }
repository = { workspace = true }

authors = [
"Steven Forrester <[email protected]>"
]

license = "MIT"
description = "Core rust library for the opsml project"

[dependencies]
serde = { version = "1.*", features = ["derive"] }
tokio = { version = "1.*", features = ["rt", "rt-multi-thread", "macros"] }
serde_json = "1.*"
tower-http = { version = "0.5.0", features = ["cors"] }
tracing = "0.1.40"
tracing-subscriber = {version = "0.3.18", features = ["json", "time"]}
axum = "0.7.7"
opsml-storage = { workspace = true, features = ["google_storage"] }


[dev-dependencies]
mockall = "0.*"
mockito = "1.*"
rand = "0.8.5"

[profile.release]
lto = "fat"
codegen-units = 1
strip = true
Loading

0 comments on commit d81ef01

Please sign in to comment.