Skip to content

Commit bf7abc8

Browse files
starknet_os_runner: initialize the crate
1 parent a99ada8 commit bf7abc8

File tree

6 files changed

+25
-0
lines changed

6 files changed

+25
-0
lines changed

Cargo.lock

Lines changed: 4 additions & 0 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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ members = [
100100
"crates/starknet_committer_and_os_cli",
101101
"crates/starknet_os",
102102
"crates/starknet_os_flow_tests",
103+
"crates/starknet_os_runner",
103104
"crates/starknet_patricia",
104105
"crates/starknet_patricia_storage",
105106
"toml_test_utils",
@@ -347,6 +348,7 @@ starknet_committer.path = "crates/starknet_committer"
347348
starknet_committer_and_os_cli.path = "crates/starknet_committer_and_os_cli"
348349
starknet_os.path = "crates/starknet_os"
349350
starknet_os_flow_tests.path = "crates/starknet_os_flow_tests"
351+
starknet_os_runner.path = "crates/starknet_os_runner"
350352
starknet_patricia.path = "crates/starknet_patricia"
351353
starknet_patricia_storage.path = "crates/starknet_patricia_storage"
352354
static_assertions = "1.1.0"

commitlint.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ const AllowedScopes = ['apollo_base_layer_tests',
103103
'starknet_committer_and_os_cli',
104104
'starknet_os',
105105
'starknet_os_flow_tests',
106+
'starknet_os_runner',
106107
'starknet_patricia',
107108
'starknet_patricia_storage',
108109
'time',
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[package]
2+
name = "starknet_os_runner"
3+
version.workspace = true
4+
edition.workspace = true
5+
repository.workspace = true
6+
license-file.workspace = true
7+
description = "Runs transactions through the Starknet OS and returns Cairo PIE and OS output."
8+
9+
[dependencies]
10+
11+
[lints]
12+
workspace = true
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
//! Starknet OS Runner - executes transactions through the OS and returns Cairo PIE and output.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
//! CLI for Starknet OS Runner.
2+
3+
fn main() {
4+
println!("Starknet OS Runner");
5+
}

0 commit comments

Comments
 (0)