feat: make cargo workspace publishable
Some checks failed
Deploy to GitHub Pages / build_site (push) Failing after 43s

This commit is contained in:
2024-05-02 14:15:20 +02:00
parent 8345e8ca8d
commit bcec0b45ab
29 changed files with 112 additions and 111 deletions

View File

@ -15,4 +15,4 @@ syn = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
quote = "1.0"
types = { version = "0.1.0", path = "../types" }
nodarium_types = { version = "0.1.0", path = "../types" }

View File

@ -1,11 +1,11 @@
extern crate proc_macro;
use nodarium_types::NodeDefinition;
use proc_macro::TokenStream;
use quote::quote;
use std::env;
use std::fs;
use std::path::Path;
use syn::{parse_macro_input, LitStr};
use types::NodeDefinition;
#[proc_macro]
pub fn node_definition(input: TokenStream) -> TokenStream {

View File

@ -1,5 +1,5 @@
[package]
name = "types"
name = "nodarium_types"
version = "0.1.0"
edition = "2021"

View File

@ -1,5 +1,5 @@
[package]
name = "utils"
name = "nodarium_utils"
version = "0.1.0"
edition = "2021"