Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(system-service-deployer): introduce new system service deployment system [fixes NET-487] #1623

Merged
merged 27 commits into from
Jun 20, 2023
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
206 changes: 19 additions & 187 deletions Cargo.lock

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

8 changes: 2 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ members = [
"crates/now-millis",
"crates/toml-utils",
"crates/air-interpreter-fs",
"crates/builtins-deployer",
"crates/created-swarm",
"crates/toy-vms",
"crates/connected-client",
Expand All @@ -29,7 +28,6 @@ members = [
"crates/spell-event-bus",
"crates/key-manager",
"sorcerer",
"crates/builtins-tests",
"crates/nox-tests",
"nox",
"aquamarine",
Expand All @@ -41,7 +39,7 @@ members = [
"script-storage",
"spell-storage",
"particle-execution",
"crates/system-service-deployer"
"crates/system-services"
]
exclude = [
"nox/tests/tetraplets",
Expand All @@ -67,7 +65,6 @@ async-unlock = { path = "crates/async-unlock" }
now-millis = { path = "crates/now-millis" }
toml-utils = { path = "crates/toml-utils" }
air-interpreter-fs = { path = "crates/air-interpreter-fs" }
builtins-deployer = { path = "crates/builtins-deployer" }
created-swarm = { path = "crates/created-swarm" }
toy-vms = { path = "crates/toy-vms" }
connected-client = { path = "crates/connected-client" }
Expand All @@ -77,7 +74,6 @@ spell-event-bus = { path = "crates/spell-event-bus" }
key-manager = { path = "crates/key-manager" }
cid-utils = { path = "crates/cid-utils" }
sorcerer = { path = "sorcerer" }
builtins-tests = { path = "crates/builtins-tests" }
nox = { path = "nox" }
aquamarine = { path = "aquamarine" }
particle-protocol = { path = "particle-protocol" }
Expand All @@ -88,7 +84,7 @@ connection-pool = { path = "connection-pool" }
script-storage = { path = "script-storage" }
spell-storage = { path = "spell-storage" }
particle-execution = { path = "particle-execution" }
system-service-deployer = { path = "crates/system-service-deployer" }
system-services = { path = "crates/system-services" }

# spell
fluence-spell-dtos = "=0.5.11"
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ test:
cargo test --release

server:
RUST_LOG="info,tide=off,tracing=off,avm_server=off,run-console=debug,system_service_deployer=debug,sorcerer::spell_builtins=debug,sorcerer=debug" \
cargo run --release -p particle-node
RUST_LOG="info,tide=off,tracing=off,avm_server=off,run-console=debug,system_services=debug,sorcerer::spell_builtins=debug,sorcerer=debug" \
cargo run --release -p nox

server-debug:
RUST_LOG="debug,\
Expand Down
31 changes: 0 additions & 31 deletions crates/builtins-deployer/Cargo.toml

This file was deleted.

Loading
Loading