- Add @semantic-release/npm (npmPublish: false) to bump root package.json - Add prepareCmd to exec plugin to sync Cargo.toml on each release - Add Cargo.toml to @semantic-release/git assets - Manually advance package.json and Cargo.toml from 0.1.0 → 0.4.0
19 lines
382 B
TOML
19 lines
382 B
TOML
[package]
|
|
name = "openconcho"
|
|
version = "0.4.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "openconcho_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-http = "2"
|
|
tauri-plugin-shell = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|