Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
9 changes: 0 additions & 9 deletions Cargo.lock

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

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ members = [
"crux_http",
"crux_kv",
"crux_macros",
"crux_platform",
"crux_time",
"doctest_support",
"examples_support/api_server",
Expand Down
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Crates published in order (dependencies before dependents)
publish_packages := "crux_macros crux_core crux_http crux_kv crux_platform crux_time"
publish_packages := "crux_macros crux_core crux_http crux_kv crux_time"

default: ci

Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,6 @@ you want to:
1. `Time` (get current time, notify after duration, notify at instant) —
[source](./crux_time), [crate](https://crates.io/crates/crux_time),
request/response
1. `Platform` (get the current platform) — [source](./crux_platform),
[crate](https://crates.io/crates/crux_platform), request/response (**deprecated** — copy the types into your own project instead)

### Example custom capabilities

Expand Down
2 changes: 0 additions & 2 deletions crux_core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,6 @@ you want to:
1. `Time` (get current time, notify after duration, notify at instant) —
[source](https://github.com/redbadger/crux/tree/master/crux_time), [crate](https://crates.io/crates/crux_time),
request/response
1. `Platform` (get the current platform) — [source](https://github.com/redbadger/crux/tree/master/crux_platform),
[crate](https://crates.io/crates/crux_platform), request/response (**deprecated** — copy the types into your own project instead)

### Example custom capabilities

Expand Down
1 change: 0 additions & 1 deletion crux_macros/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ Full usage might look something like this:
pub struct CatFactCapabilities {
pub http: Http<MyEvent>,
pub key_value: KeyValue<MyEvent>,
pub platform: Platform<MyEvent>,
pub render: Render<MyEvent>,
pub time: Time<MyEvent>,
}
Expand Down
14 changes: 0 additions & 14 deletions crux_macros/src/export.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ mod tests {
pub struct MyCapabilities {
pub http: crux_http::Http<MyEvent>,
pub key_value: KeyValue<MyEvent>,
pub platform: Platform<MyEvent>,
pub render: Render<MyEvent>,
#[effect(skip)]
pub time: Time<MyEvent>,
Expand All @@ -227,9 +226,6 @@ mod tests {
<KeyValue<
MyEvent,
> as Capability<MyEvent>>::Operation::register_types(generator)?;
<Platform<
MyEvent,
> as Capability<MyEvent>>::Operation::register_types(generator)?;
<Render<MyEvent> as Capability<MyEvent>>::Operation::register_types(generator)?;
generator.register_type::<EffectFfi>()?;
generator.register_type::<::crux_core::bridge::Request<EffectFfi>>()?;
Expand All @@ -249,9 +245,6 @@ mod tests {
<KeyValue<
MyEvent,
> as Capability<MyEvent>>::Operation::register_types_facet(generator)?;
<Platform<
MyEvent,
> as Capability<MyEvent>>::Operation::register_types_facet(generator)?;
<Render<
MyEvent,
> as Capability<MyEvent>>::Operation::register_types_facet(generator)?;
Expand All @@ -271,7 +264,6 @@ mod tests {
pub struct MyCapabilities {
pub http: crux_http::Http<MyEvent>,
pub key_value: KeyValue<MyEvent>,
pub platform: Platform<MyEvent>,
pub render: Render<MyEvent>,
pub time: Time<MyEvent>,
}
Expand All @@ -294,9 +286,6 @@ mod tests {
<KeyValue<
MyEvent,
> as Capability<MyEvent>>::Operation::register_types(generator)?;
<Platform<
MyEvent,
> as Capability<MyEvent>>::Operation::register_types(generator)?;
<Render<MyEvent> as Capability<MyEvent>>::Operation::register_types(generator)?;
<Time<MyEvent> as Capability<MyEvent>>::Operation::register_types(generator)?;
generator.register_type::<EffectFfi>()?;
Expand All @@ -317,9 +306,6 @@ mod tests {
<KeyValue<
MyEvent,
> as Capability<MyEvent>>::Operation::register_types_facet(generator)?;
<Platform<
MyEvent,
> as Capability<MyEvent>>::Operation::register_types_facet(generator)?;
<Render<
MyEvent,
> as Capability<MyEvent>>::Operation::register_types_facet(generator)?;
Expand Down
191 changes: 0 additions & 191 deletions crux_platform/CHANGELOG.md

This file was deleted.

16 changes: 0 additions & 16 deletions crux_platform/Cargo.toml

This file was deleted.

48 changes: 0 additions & 48 deletions crux_platform/README.md

This file was deleted.

5 changes: 0 additions & 5 deletions crux_platform/src/command.rs

This file was deleted.

Loading
Loading