Skip to content

Commit

Permalink
fix: use non-generic name for macro for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
willemneal committed Oct 28, 2021
1 parent f9f1552 commit d1d5af8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion api/rust/codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "codegen"
name = "suborbital-macro"
version = "0.1.0"
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion api/rust/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ homepage = "https://suborbital.dev"
crate-type = ["cdylib", "rlib"]

[dependencies]
codegen = { path = "../codegen", version = "0.1.0" }
suborbital-macro = { path = "../codegen", version = "0.1.0" }
2 changes: 1 addition & 1 deletion api/rust/core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ static mut STATE: State = State {
runnable: &DefaultRunnable::new(),
};

pub use codegen::*;
pub use suborbital_macro::*;

0 comments on commit d1d5af8

Please sign in to comment.