Skip to content

Commit 48ebbaa

Browse files
committed
tidy for PR
1 parent 853e8d6 commit 48ebbaa

4 files changed

Lines changed: 2 additions & 10 deletions

File tree

Cargo.lock

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

crates/csharp/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ clap = { workspace = true, optional = true }
2525
anyhow = { workspace = true }
2626
indexmap = { workspace = true }
2727

28-
[dev-dependencies]
29-
futures = { workspace = true }
30-
wit-bindgen = { path = '../guest-rust', features = ['async'] }
31-
3228
[features]
3329
default = ["aot"]
3430
aot = []

crates/csharp/src/AsyncSupport.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* This file proviedes helper enums for the async support.
2+
* Helpers for the async support.
33
*/
44

55
public enum CallbackCode

tests/codegen/futures.wit

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ package foo:foo;
44

55
interface futures {
66
future-param: func(x: future);
7-
/*
87
future-u8-param: func(x: future<u8>);
98
future-u16-param: func(x: future<u16>);
109
future-u32-param: func(x: future<u32>);
@@ -86,10 +85,9 @@ interface futures {
8685
char,
8786
>>;
8887
load-store-everything: func(a: load-store-all-sizes) -> load-store-all-sizes;
89-
*/
9088
}
9189

9290
world the-futures {
9391
import futures;
94-
//export futures;
92+
export futures;
9593
}

0 commit comments

Comments
 (0)