-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (36 loc) · 1.26 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "highvis"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/main.rs"
name = "highvis"
[dependencies]
dioxus = { git = "https://github.com/DioxusLabs/dioxus" }
dioxus-desktop = { git = "https://github.com/DioxusLabs/dioxus" }
sqlx = { version = "0.6", features = [ "runtime-async-std-native-tls", "sqlite" ] }
async-std = { version = "1", features = [ "attributes" ] }
native-dialog = "0.6.3"
serde_json = "1.0"
serde_yaml = "0.9.19"
serde = { version = "1", features = ["derive"] }
base64 = "0.21.0"
markdown = "1.0.0-alpha.7"
[package.metadata.bundle]
name = "highvis content editor"
identifier = "com.doe.exampleapplication"
icon = ["32x32.png", "128x128.png", "[email protected]"]
version = "0.1.0"
resources = ["assets", "images/**/*.png", "secrets/public_key.txt"]
copyright = "Copyright (c) Benjamin Corey 2023. All rights reserved."
category = "Developer Tool"
short_description = "A content management application for small blogs."
long_description = """
Point Ripstop to a SQLite database of your content and it will
index it into the form of a static site for your
blog to access, no database hosting required.
"""
osx_frameworks = []