[Denali] Begin porting to rust.

This commit is contained in:
Drew Galbraith 2024-08-30 00:38:15 -07:00
parent 72e5d8c618
commit 51478e7ccf
12 changed files with 110 additions and 16 deletions

View file

@ -0,0 +1,21 @@
[package]
name = "denali"
version = "0.1.0"
edition = "2021"
[dependencies]
mammoth = { path = "../../lib/mammoth" }
yunq = {path = "../../lib/yunq"}
yellowstone-yunq = { path = "../../lib/yellowstone", optional = true }
[[bin]]
name = "denali"
required-features = ["binary"]
[build-dependencies]
yunqc = {path = "../../../yunq/rust"}
[features]
default = ["binary"]
binary = ["dep:yellowstone-yunq"]