Skip to content

Commit 84334d5

Browse files
committed
Houseclean obsolete code overcome by events.
1 parent 271e312 commit 84334d5

49 files changed

Lines changed: 48 additions & 3107 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.cargo/packages.json

Lines changed: 21 additions & 137 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.cargo/packages.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
| [asimov-sdk](https://github.com/asimov-platform/asimov.rs/tree/master/lib/asimov-sdk) | [![Package](https://img.shields.io/crates/v/asimov-sdk)](https://crates.io/crates/asimov-sdk) | [![Documentation](https://img.shields.io/docsrs/asimov-sdk?label=docs.rs)](https://docs.rs/asimov-sdk) |
3434
| [asimov-server](https://github.com/asimov-platform/asimov.rs/tree/master/lib/asimov-server) | [![Package](https://img.shields.io/crates/v/asimov-server)](https://crates.io/crates/asimov-server) | [![Documentation](https://img.shields.io/docsrs/asimov-server?label=docs.rs)](https://docs.rs/asimov-server) |
3535
| [asimov-snapshot](https://github.com/asimov-platform/asimov.rs/tree/master/lib/asimov-snapshot) | [![Package](https://img.shields.io/crates/v/asimov-snapshot)](https://crates.io/crates/asimov-snapshot) | [![Documentation](https://img.shields.io/docsrs/asimov-snapshot?label=docs.rs)](https://docs.rs/asimov-snapshot) |
36-
| [asimov-sys](https://github.com/asimov-platform/asimov.rs/tree/master/lib/asimov-sys) | [![Package](https://img.shields.io/crates/v/asimov-sys)](https://crates.io/crates/asimov-sys) | [![Documentation](https://img.shields.io/docsrs/asimov-sys?label=docs.rs)](https://docs.rs/asimov-sys) |
3736
| [asimov-token](https://github.com/asimov-platform/asimov.rs/tree/master/lib/asimov-token) | [![Package](https://img.shields.io/crates/v/asimov-token)](https://crates.io/crates/asimov-token) | [![Documentation](https://img.shields.io/docsrs/asimov-token?label=docs.rs)](https://docs.rs/asimov-token) |
3837
| [asimov-universe](https://github.com/asimov-platform/asimov.rs/tree/master/lib/asimov-universe) | [![Package](https://img.shields.io/crates/v/asimov-universe)](https://crates.io/crates/asimov-universe) | [![Documentation](https://img.shields.io/docsrs/asimov-universe?label=docs.rs)](https://docs.rs/asimov-universe) |
3938
| [asimov-vault](https://github.com/asimov-platform/asimov.rs/tree/master/lib/asimov-vault) | [![Package](https://img.shields.io/crates/v/asimov-vault)](https://crates.io/crates/asimov-vault) | [![Documentation](https://img.shields.io/docsrs/asimov-vault?label=docs.rs)](https://docs.rs/asimov-vault) |

Cargo.lock

Lines changed: 0 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@
44
members = ["lib/*"]
55
default-members = [
66
"lib/asimov-cloud",
7+
"lib/asimov-core",
78
"lib/asimov-credit",
89
"lib/asimov-env",
10+
"lib/asimov-flow",
911
"lib/asimov-huggingface",
1012
"lib/asimov-id",
1113
"lib/asimov-installer",
@@ -16,6 +18,7 @@ default-members = [
1618
"lib/asimov-prompt",
1719
"lib/asimov-registry",
1820
"lib/asimov-runner",
21+
"lib/asimov-sdk",
1922
"lib/asimov-server",
2023
"lib/asimov-snapshot",
2124
]
@@ -70,7 +73,6 @@ asimov-runtime = "25.0.3"
7073
asimov-sdk = "25.0.3"
7174
asimov-server = "25.0.3"
7275
asimov-snapshot = "25.0.3"
73-
asimov-sys = "25.0.3"
7476
asimov-token = "25.0.3"
7577
asimov-universe = "25.0.3"
7678
asimov-vault = "25.0.3"
@@ -201,7 +203,6 @@ asimov-runtime = { path = "lib/asimov-runtime" }
201203
asimov-sdk = { path = "lib/asimov-sdk" }
202204
asimov-server = { path = "lib/asimov-server" }
203205
asimov-snapshot = { path = "lib/asimov-snapshot" }
204-
asimov-sys = { path = "lib/asimov-sys" }
205206
asimov-token = { path = "lib/asimov-token" }
206207
asimov-universe = { path = "lib/asimov-universe" }
207208
asimov-vault = { path = "lib/asimov-vault" }

Makefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@ VERSION := $(shell cat VERSION)
88
all: Cargo.toml $(SOURCES)
99
$(CARGO) build
1010

11-
bindgen: lib/asimov-sys/src/bindgen.rs
12-
13-
lib/asimov-sys/src/bindgen.rs: etc/bindgen/allowlist.txt etc/bindgen/options.txt
14-
$(BINDGEN) -o $@ ../c/src/asimov.h $(BINDGENFLAGS) $(shell cat $^)
15-
1611
check: Cargo.toml $(SOURCES)
1712
$(CARGO) test
1813

@@ -26,7 +21,7 @@ mostlyclean: clean
2621

2722
maintainer-clean: clean
2823

29-
.PHONY: all bindgen check
24+
.PHONY: all check
3025
.PHONY: clean distclean mostlyclean maintainer-clean
3126
.SECONDARY:
3227
.SUFFIXES:

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ use asimov::*;
101101
| [asimov-sdk](https://github.com/asimov-platform/asimov.rs/tree/master/lib/asimov-sdk) | [![Package](https://img.shields.io/crates/v/asimov-sdk)](https://crates.io/crates/asimov-sdk) | [![Documentation](https://img.shields.io/docsrs/asimov-sdk?label=docs.rs)](https://docs.rs/asimov-sdk) |
102102
| [asimov-server](https://github.com/asimov-platform/asimov.rs/tree/master/lib/asimov-server) | [![Package](https://img.shields.io/crates/v/asimov-server)](https://crates.io/crates/asimov-server) | [![Documentation](https://img.shields.io/docsrs/asimov-server?label=docs.rs)](https://docs.rs/asimov-server) |
103103
| [asimov-snapshot](https://github.com/asimov-platform/asimov.rs/tree/master/lib/asimov-snapshot) | [![Package](https://img.shields.io/crates/v/asimov-snapshot)](https://crates.io/crates/asimov-snapshot) | [![Documentation](https://img.shields.io/docsrs/asimov-snapshot?label=docs.rs)](https://docs.rs/asimov-snapshot) |
104-
| [asimov-sys](https://github.com/asimov-platform/asimov.rs/tree/master/lib/asimov-sys) | [![Package](https://img.shields.io/crates/v/asimov-sys)](https://crates.io/crates/asimov-sys) | [![Documentation](https://img.shields.io/docsrs/asimov-sys?label=docs.rs)](https://docs.rs/asimov-sys) |
105104
| [asimov-token](https://github.com/asimov-platform/asimov.rs/tree/master/lib/asimov-token) | [![Package](https://img.shields.io/crates/v/asimov-token)](https://crates.io/crates/asimov-token) | [![Documentation](https://img.shields.io/docsrs/asimov-token?label=docs.rs)](https://docs.rs/asimov-token) |
106105
| [asimov-universe](https://github.com/asimov-platform/asimov.rs/tree/master/lib/asimov-universe) | [![Package](https://img.shields.io/crates/v/asimov-universe)](https://crates.io/crates/asimov-universe) | [![Documentation](https://img.shields.io/docsrs/asimov-universe?label=docs.rs)](https://docs.rs/asimov-universe) |
107106
| [asimov-vault](https://github.com/asimov-platform/asimov.rs/tree/master/lib/asimov-vault) | [![Package](https://img.shields.io/crates/v/asimov-vault)](https://crates.io/crates/asimov-vault) | [![Documentation](https://img.shields.io/docsrs/asimov-vault?label=docs.rs)](https://docs.rs/asimov-vault) |

0 commit comments

Comments
 (0)