110f07a401
Setup the version as 0.0.1 add description, keywords license and author
27 lines
835 B
TOML
27 lines
835 B
TOML
[package]
|
|
name = "sqwerk"
|
|
version = "0.0.1"
|
|
description = "Your Complete SQL Platform, From Design to Delivery"
|
|
authors = ["Rodney Osodo <socials@rodneyosodo.com>"]
|
|
edition = "2021"
|
|
readme = "README.md"
|
|
license = "Apache-2.0"
|
|
keywords = ["tauri", "sql", "database"]
|
|
repository = "https://github.com/rodneyosodo/sqwerk"
|
|
|
|
[lib]
|
|
# The `_lib` suffix may seem redundant but it is necessary
|
|
# to make the lib name unique and wouldn't conflict with the bin name.
|
|
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
|
|
name = "sqwerk_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-opener = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|