Skip to content

Commit

Permalink
t 1
Browse files Browse the repository at this point in the history
  • Loading branch information
OmarTawfik committed Nov 23, 2024
1 parent fb87486 commit aa97cbb
Show file tree
Hide file tree
Showing 13 changed files with 37 additions and 1 deletion.
1 change: 1 addition & 0 deletions crates/codegen/runtime/cargo/crate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ description = "Cargo runtime copied over by codegen"
[features]
default = []
__experimental_bindings_api = ["dep:metaslang_bindings"]
__internal_compilation_api = []
__private_ariadne_errors = ["dep:ariadne"]
__private_testing_utils = []

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub struct InternalCompilation {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
mod internal;

/// Only intended to be used internally by the TypeScript comilation API.
pub use internal::Compilation;
2 changes: 2 additions & 0 deletions crates/codegen/runtime/cargo/crate/src/runtime/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#[cfg(feature = "__experimental_bindings_api")]
pub mod bindings;
#[cfg(feature = "__internal_compilation_api")]
pub mod compilation;
pub mod cst;
pub mod diagnostic;
pub mod language;
Expand Down
1 change: 1 addition & 0 deletions crates/solidity/outputs/cargo/crate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ categories = [
[features]
default = []
__experimental_bindings_api = ["dep:metaslang_bindings"]
__internal_compilation_api = []
__private_ariadne_errors = ["dep:ariadne"]
__private_testing_utils = []

Expand Down
6 changes: 5 additions & 1 deletion crates/solidity/outputs/cargo/crate/generated/public_api.txt

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

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

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

2 changes: 2 additions & 0 deletions crates/solidity/outputs/cargo/crate/src/generated/mod.rs

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

1 change: 1 addition & 0 deletions crates/testlang/outputs/cargo/crate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ name = "slang_testlang"
[features]
default = []
__experimental_bindings_api = ["dep:metaslang_bindings"]
__internal_compilation_api = []
__private_ariadne_errors = ["dep:ariadne"]
__private_testing_utils = []

Expand Down

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

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

2 changes: 2 additions & 0 deletions crates/testlang/outputs/cargo/crate/src/generated/mod.rs

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

0 comments on commit aa97cbb

Please sign in to comment.