forked from Bitc0indad/gnostr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (32 loc) · 1.36 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
[package]
name = "gnostr"
version = "0.0.2"
edition = "2021"
authors = ["gnostr <admin@gnostr.org>", "extrawurst <mail@rusticorn.com>", "TODO:add more contributors"]
description = "gnostr: a git+nostr workflow utility"
rust-version = "1.65"
exclude = [".github/*", ".vscode/*", "assets/*"]
homepage = "https://github.com/gnostr-org/gnostr"
repository = "https://github.com/gnostr-org/gnostr"
readme = "README.md"
license = "MIT"
categories = ["command-line-utilities"]
keywords = ["git", "gui", "cli", "terminal", "ui", "gnostr"]
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cc = { version = "1.0.88", features = ["libc"] }
getopts = "0.2.21"
git2 = "0.18.2"
gnostr-bins = "0.0.14"
gnostr-xq = { git = "https://github.com/gnostr-org/gnostr-xq.git", version = "0.0.0" }
inline-c = "0.1.7"
# gnostr-bins = { git = "https://github.com/gnostr-org/gnostr-bins.git", version = "0.0.6" }
# gnostr-cli = { git = "https://github.com/gnostr-org/gnostr-cli.git", rev = "60e244cffdcd781f1a22c2c67f31bb3d539624f2" }
k256 = { version = "0.13.3", features = ["schnorr", "ecdh"], path = "vendor/k256" }
libc = "0.2"
rand_core = "0.6"
reqwest = { version = "0.11.24", features = ["blocking"] }
sha2 = { version = "0.10.8", path = "vendor/sha2" }
[build-dependencies]
cc = { version = "1.0.88", features = ["libc"] }