blob: 6b08d85f608f7b759763c61173543a0984d9b147 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# SPDX-FileCopyrightText: V <v@unfathomable.blue>
# SPDX-License-Identifier: OSL-3.0
[package]
name = "naut"
version = "0.1.0"
edition = "2018"
[dependencies]
anyhow = "1.0"
tokio = { version = "1", features = [ "io-util", "macros", "rt-multi-thread", "net" ] }
git2 = { version = "0.13", default-features = false }
irc = { version = "0.15", features = [ "ctcp", "tls-native", "nochanlists" ] }
tokio-stream = "0.1"
toml = "0.5"
pin-utils = "0.1"
lazy_static = "1.4"
|