Skip to content
Merged
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" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Comment on lines +18 to 21
Copy link

Copilot AI Feb 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The time-tracker-plugin-sdk dependency is pulled from Git without a pinned tag/rev, which makes builds non-reproducible and can break older plugins if the SDK’s API/ABI changes upstream. Consider pinning to a tag/rev that corresponds to the supported core version(s), or using a crates.io version once published.

Copilot uses AI. Check for mistakes.
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