crieur/Cargo.toml
koalp a16dbbc790
Some checks failed
continuous-integration/drone/pr Build is running
continuous-integration/drone/push Build is failing
feat: add basic chatbot
A basic chabot application that downloads article from one newspaper
have been added.

It can download html pages and is called with !hmtl

ArticleLocation have been refactored to own it's internal data.
2021-04-27 04:32:37 +02:00

26 lines
545 B
TOML

[workspace]
members = [
"crieur-retrieve",
"crieur-chatbot",
]
[package]
name = "crieur"
version = "0.1.0"
authors = ["koalp <koalp@alpaga.dev>"]
edition = "2018"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.40"
crieur-retrieve = {version = "0.1", path="crieur-retrieve"}
crieur-chatbot = {version = "0.1", path="crieur-chatbot"}
dotenv = "0.15.0"
env_logger = "0.8.3"
log = "0.4.14"
tokio = { version = "1.5.0", features = ["full"] }