summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: ff64959c85354010cb4504eeff195649e227bfe5 (plain)
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
[package]
name = "kona"
version = "0.1.0"
authors = ["Jakob L. Kreuze <zerodaysfordays@sdf.org>"]
edition = "2018"
license = "AGPL-3.0+"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.31"
base64 = "0.12.1"
blake2 = "0.8"
dirs = "2.0.2"
rusqlite = "0.21.0"

# Until RFC #2887 is merged, image and rocket are deps of the CLI tool as well.
image = "0.23"
multipart = { package = "rocket-multipart-form-data", version = "0.9" }
rand = "0.7"
rocket = "0.4"
rocket_contrib = { version = "0.4", default-features = false, features = ["handlebars_templates", "json", "serve"] }
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"

[lib]
name = "kona"
path = "src/lib.rs"

[[bin]]
name = "kona-cli"
path = "src/kona-cli.rs"

[[bin]]
name = "kona-web"
path = "src/kona-web.rs"