diff --git a/Cargo.lock b/Cargo.lock index 14c2cdcbe88..d532ec78a29 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5813,8 +5813,9 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" [[package]] name = "steno" -version = "0.2.1-dev" -source = "git+https://github.com/oxidecomputer/steno?rev=4cebb996217453b79896b53c9c2026007f2e69e8#4cebb996217453b79896b53c9c2026007f2e69e8" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2d803a4bde6e855daf47c2f78c5e1eb3cabf5b416eda9b83666ee9f0a83f199" dependencies = [ "anyhow", "async-trait", diff --git a/common/Cargo.toml b/common/Cargo.toml index 13a42579ca4..30775f84d1f 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -25,7 +25,7 @@ serde_json = "1.0" serde_with = "2.0.1" slog = { version = "2.5", features = [ "max_level_trace", "release_max_level_debug" ] } smf = "0.2" -steno = { git = "https://github.com/oxidecomputer/steno", rev = "4cebb996217453b79896b53c9c2026007f2e69e8" } +steno = "0.3" thiserror = "1.0" tokio = { version = "1.21", features = [ "full" ] } tokio-postgres = { version = "0.7", features = [ "with-chrono-0_4", "with-uuid-1" ] } diff --git a/nexus/Cargo.toml b/nexus/Cargo.toml index b489e69a7de..26a25ee9496 100644 --- a/nexus/Cargo.toml +++ b/nexus/Cargo.toml @@ -58,7 +58,7 @@ serde_urlencoded = "0.7.1" serde_with = "2.0.1" sled-agent-client = { path = "../sled-agent-client" } slog-dtrace = "0.2" -steno = { git = "https://github.com/oxidecomputer/steno", rev = "4cebb996217453b79896b53c9c2026007f2e69e8" } +steno = "0.3" tempfile = "3.3" thiserror = "1.0" tokio-tungstenite = "0.17.2" diff --git a/nexus/db-model/Cargo.toml b/nexus/db-model/Cargo.toml index 37353bc6e5f..22953a4ad98 100644 --- a/nexus/db-model/Cargo.toml +++ b/nexus/db-model/Cargo.toml @@ -25,7 +25,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" uuid = { version = "1.2.1", features = ["serde", "v4"] } -steno = { git = "https://github.com/oxidecomputer/steno", rev = "4cebb996217453b79896b53c9c2026007f2e69e8" } +steno = "0.3" db-macros = { path = "../db-macros" } omicron-common = { path = "../../common" }