10
0
Fork 0
mirror of https://github.com/ZeusWPI/ZNS.git synced 2024-10-30 05:24:26 +01:00
zns/zns-daemon/Cargo.toml

24 lines
498 B
TOML
Raw Normal View History

2024-07-29 21:46:56 +02:00
[package]
name = "zns-daemon"
version = "0.1.0"
edition = "2021"
2024-08-16 23:39:38 +02:00
resolver = "2"
2024-07-29 21:46:56 +02:00
[dependencies]
2024-08-16 23:39:38 +02:00
tokio = {version = "1.36.0", features = ["macros","rt-multi-thread","net"]}
diesel = { version = "2.1.4", features = ["postgres"] }
dotenvy = "0.15"
ring = "0.17.8"
reqwest = {version = "0.12.4", features = ["json","default"]}
asn1 = "0.16.2"
base64 = "0.22.0"
int-enum = "1.1"
2024-07-29 21:46:56 +02:00
[dependencies.zns]
2024-08-16 23:39:38 +02:00
version = "*"
2024-07-29 21:46:56 +02:00
path = "../zns"
2024-08-16 23:39:38 +02:00
[dev-dependencies]
zns = { path = "../zns", features = ["test-utils"] }