Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ name = "example_plugin_backend"
crate-type = ["cdylib"] # Dynamic library for plugin loading

[dependencies]
# Plugin SDK - this provides the Plugin trait and API interfaces
# Note: In a real plugin, you would add this as a dependency pointing to the SDK
# For the template, we'll use a placeholder that matches the actual SDK structure
# time-tracker-plugin-sdk = { path = "../plugin-sdk" } # Uncomment and adjust path when using
time-tracker-plugin-sdk = { git = "https://github.com/bthos/time-tracker-app", package = "time-tracker-plugin-sdk", rev = "003d4143c50283016206b893ce57e2cf547355d0" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }

# Plugin API dependencies (adjust versions based on TimeTracker core)
# These will be provided by the TimeTracker app at runtime
# Include them here for compilation, but they should match the core app versions

[dev-dependencies]

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
codegen-units = 1
Loading