mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2025-12-11 20:15:30 +01:00
- Added a new SDK for developing Spacedrive WASM extensions, featuring a type-safe API and comprehensive documentation. - Implemented core components including job context management, FFI bindings, and error handling mechanisms. - Created macros for simplifying extension and job definitions, enhancing developer experience. - Included detailed README and status documentation to guide users in utilizing the SDK effectively. - Updated Cargo configurations for the SDK and its macros, ensuring proper dependency management and build processes.
14 lines
300 B
TOML
14 lines
300 B
TOML
[package]
|
|
description = "Proc macros for Spacedrive extension SDK"
|
|
edition = "2021"
|
|
name = "spacedrive-sdk-macros"
|
|
version = "0.1.0"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
syn = { version = "2.0", features = ["extra-traits", "full"] }
|