-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
80 lines (75 loc) · 2.35 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "oracles"
version = "0.3.0"
edition = "2021"
default-run = "oracles"
description = "Oracles"
homepage = "https://github.com/butaneprotocol/oracles"
repository = "https://github.com/butaneprotocol/oracles"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
almost-raft = "0.3.0"
anyhow = "1.0.80"
async-trait = "0.1.77"
bech32 = "0.11"
chacha20poly1305 = "0.10"
cynic = "3.4"
clap = { version = "4.5.1", features = ["derive"] }
config = "0.14"
dashmap = "5.5.3"
ed25519 = { version = "2.2", features = ["pkcs8", "pem", "serde"] }
ed25519-dalek = { version = "2.1", features = ["serde"] }
frost-ed25519 = { version = "1.0.0", features = ["serde"] }
futures = "0.3"
hex = "0.4.3"
kupon = { git = "https://github.com/SundaeSwap-finance/kupon", rev = "bf871825" }
minicbor = { version = "0.20", features = ["std"] }
num-bigint = "0.4"
num-integer = "0.1"
pallas-crypto = "0.25"
pallas-primitives = "0.25"
rand = "0.8.5"
reqwest = "0.12"
rust_decimal = "1.34.3"
serde = "1.0"
serde_cbor = "0.11"
serde_json = "1.0.114"
tide = "0.16"
tokio = { version = "1.36.0", features = ["full"] }
tokio-serde = { version = "0.9", features = ["json", "cbor"] }
tokio-tungstenite = { version = "0.21.0", features = ["native-tls"] }
tokio-util = { version = "0.7", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3", features = ["json"] }
uuid = { version = "1.7.0", features = ["v4"] }
x25519-dalek = { version = "2", features = ["serde"] }
[package.metadata.dist]
dist = true
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.14.1"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell", "powershell", "homebrew"]
# A GitHub repo to push Homebrew formulas to
tap = "butaneprotocol/homebrew-tap"
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
]
# Publish jobs to run in CI
publish-jobs = ["homebrew"]
# Publish jobs to run in CI
pr-run-mode = "plan"
# Whether to install an updater program
install-updater = false