circe/Cargo.toml

39 lines
770 B
TOML
Raw Permalink 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"
2021-12-06 11:46:36 -06:00
version = "0.1.5"
2021-11-16 15:20:10 -06:00
edition = "2018"
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
2021-11-11 20:12:57 -06:00
[dependencies.native-tls]
version= "0.2"
optional = true
2021-11-11 12:30:10 -06:00
2021-12-06 11:38:59 -06:00
[dependencies.toml]
version = "0.5"
optional = true
[dependencies.serde]
version = "1.0"
optional = true
[dependencies.serde_derive]
version = "1.0"
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-12-06 11:38:59 -06:00
toml_support = ["toml", "serde", "serde_derive"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]