diff options
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 41 |
1 files changed, 34 insertions, 7 deletions
@@ -3,6 +3,12 @@ version = 4 [[package]] +name = "just_fmt" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" + +[[package]] name = "pin-project-lite" version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -30,9 +36,12 @@ dependencies = [ name = "rola-bucket" version = "0.1.0" dependencies = [ + "shared_constants", "shared_functions", "shared_macros", + "space-system", "thiserror", + "tokio", ] [[package]] @@ -53,18 +62,16 @@ version = "0.1.0" dependencies = [ "rola-bucket", "rola-draft", - "rorolala_internal_macros", "shared_functions", "shared_macros", ] [[package]] -name = "rorolala_internal_macros" +name = "shared_constants" version = "0.1.0" dependencies = [ - "proc-macro2", - "quote", - "syn", + "shared_macros", + "tokio", ] [[package]] @@ -84,10 +91,30 @@ dependencies = [ ] [[package]] +name = "space-macros" +version = "0.1.0" +dependencies = [ + "just_fmt", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "space-system" +version = "0.1.0" +dependencies = [ + "just_fmt", + "space-macros", + "thiserror", + "tokio", +] + +[[package]] name = "syn" -version = "2.0.117" +version = "2.0.118" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" +checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422" dependencies = [ "proc-macro2", "quote", |
