circe/Cargo.toml

28 lines
535 B
TOML
Raw Normal View History

2021-10-30 15:56:47 -05:00
[package]
authors = ["famfo", "karx"]
2021-11-04 11:45:54 -05:00
name = "circe"
version = "0.1.3"
2021-10-30 15:56:47 -05:00
edition = "2021"
2021-11-04 12:22:14 -05:00
license = "Unlicense"
description = "IRC crate in Rust"
repository = "https://git.karx.xyz/circe.git"
readme = "README.md"
exclude = ["src/main.rs", "config.toml"]
2021-10-30 15:56:47 -05:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
toml = "0.5"
serde_derive = "1.0"
serde = "1.0"
2021-11-11 20:12:57 -06:00
[dependencies.native-tls]
version= "0.2"
optional = true
2021-11-11 12:30:10 -06:00
[features]
2021-11-11 20:12:57 -06:00
default = ["tls"]
tls = ["native-tls"]
debug = []
2021-11-11 20:12:57 -06:00