changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / rust/bin/alik/Cargo.toml

changeset 309: 94d358919982
author: Richard Westhaver <ellis@rwest.io>
date: Wed, 08 May 2024 00:13:43 -0400
permissions: -rw-r--r--
description: refactor rust, fixing cli issues and rdb error handling
1 [package]
2 name = "alik"
3 version = "0.1.0"
4 edition = "2021"
5 description = "Helper of Man"
6 [[bin]]
7 name = "alik"
8 path = "main.rs"
9 [lib]
10 path = "lib.rs"
11 [dependencies]
12 krypt = { path = "../../lib/krypt" }
13 util = { path = "../../lib/util", features = ["cli"] }
14 logger = { path = "../../lib/logger" }
15 obj = { path = "../../lib/obj" }
16 net = { path = "../../lib/net", features = ["client", "server", "quic", "dns", "tls", "http", "graphql"] }
17 db = { path = "../../lib/db", features = ["rocksdb"] }
18 tenex = { path = "../../lib/tenex" }
19 tokio = { workspace = true, features = ["full"] }
20 clap = { version = "4.5.4", features = ["derive","env","string"] }
21 serde = { workspace = true, features = ["derive"] }
22 [build-dependencies]
23 util = { path = "../../lib/util", features = ["bs"] }