Skip to content

Commit

Permalink
bundler: move to a new crate
Browse files Browse the repository at this point in the history
  • Loading branch information
rlane committed Oct 21, 2023
1 parent 5701a58 commit 2b9aac6
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ oort-rebuild-ai = "run --bin build-builtin-ais --"
oort-serve = "run --bin serve --"
oort-tournament = "run --bin tournament --"
oort-compiler-loadtest = "run --bin compiler-loadtest -- --users 20 --run-time 2m --hatch-rate 100 --no-reset-metrics --no-scenario-metrics --no-transaction-metrics"
oort-bundler = "run --bin bundler --"
oort-bundler = "run --bin oort-bundler --"
oort-rescore = "run --bin rescore --"

[registries.crates-io]
Expand Down
13 changes: 11 additions & 2 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ members = [
"services/compiler",

"tools",
"bundler",
]

[patch.crates-io]
Expand Down
11 changes: 11 additions & 0 deletions bundler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[package]
name = "oort-bundler"
version = "0.1.0"
edition = "2021"

[dependencies]
oort_multifile = { path = "../shared/multifile" }
notify = "6.1.1"
env_logger = "0.10.0"
clap = { version = "4.4.6", features = ["derive"] }
anyhow = "1.0.75"
File renamed without changes.
2 changes: 0 additions & 2 deletions tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ oort_proto = { path = "../shared/proto" }
oort_simulator = { path = "../shared/simulator", features = ["precompile"] }
oort_compiler = { path = "../shared/compiler" }
oort_api = { path = "../shared/api" }
oort_multifile = { path = "../shared/multifile" }
firestore = "0.37.2"
gcloud-sdk = "0.21.0"
serde = { version = "1.0", features = ["derive"] }
Expand Down Expand Up @@ -45,4 +44,3 @@ tokio-retry = "0.3.0"
goose = "0.17.2"
nalgebra = "0.32.3"
futures = "0.3.28"
notify = "6.1.1"

0 comments on commit 2b9aac6

Please sign in to comment.