tools/ubot-plugins/ubot-mingpt-plugin/Cargo.toml
author alfadur
Sat, 16 Oct 2021 01:06:05 +0300
changeset 15819 c5198f55ee1c
parent 15791 2528e3508bf4
permissions -rw-r--r--
reduce digging damage frequency
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15791
2528e3508bf4 Add mingpt plugin which is mingpt example from tch repo plus amqp wrapper by me
unc0rr
parents:
diff changeset
     1
[package]
2528e3508bf4 Add mingpt plugin which is mingpt example from tch repo plus amqp wrapper by me
unc0rr
parents:
diff changeset
     2
name = "ubot-mingpt-plugin"
2528e3508bf4 Add mingpt plugin which is mingpt example from tch repo plus amqp wrapper by me
unc0rr
parents:
diff changeset
     3
version = "0.1.0"
2528e3508bf4 Add mingpt plugin which is mingpt example from tch repo plus amqp wrapper by me
unc0rr
parents:
diff changeset
     4
authors = ["Andrey Korotaev <a.korotaev@hedgewars.org>"]
2528e3508bf4 Add mingpt plugin which is mingpt example from tch repo plus amqp wrapper by me
unc0rr
parents:
diff changeset
     5
edition = "2018"
2528e3508bf4 Add mingpt plugin which is mingpt example from tch repo plus amqp wrapper by me
unc0rr
parents:
diff changeset
     6
2528e3508bf4 Add mingpt plugin which is mingpt example from tch repo plus amqp wrapper by me
unc0rr
parents:
diff changeset
     7
[dependencies]
2528e3508bf4 Add mingpt plugin which is mingpt example from tch repo plus amqp wrapper by me
unc0rr
parents:
diff changeset
     8
tch = "0.4"
2528e3508bf4 Add mingpt plugin which is mingpt example from tch repo plus amqp wrapper by me
unc0rr
parents:
diff changeset
     9
anyhow = "1.0"
2528e3508bf4 Add mingpt plugin which is mingpt example from tch repo plus amqp wrapper by me
unc0rr
parents:
diff changeset
    10
tokio-amqp = "1.0"
2528e3508bf4 Add mingpt plugin which is mingpt example from tch repo plus amqp wrapper by me
unc0rr
parents:
diff changeset
    11
lapin = "1.7"
2528e3508bf4 Add mingpt plugin which is mingpt example from tch repo plus amqp wrapper by me
unc0rr
parents:
diff changeset
    12
tokio = {version="1.6", features = ["full"]}
2528e3508bf4 Add mingpt plugin which is mingpt example from tch repo plus amqp wrapper by me
unc0rr
parents:
diff changeset
    13
rand = "0.8"
2528e3508bf4 Add mingpt plugin which is mingpt example from tch repo plus amqp wrapper by me
unc0rr
parents:
diff changeset
    14
futures = "0.3"
2528e3508bf4 Add mingpt plugin which is mingpt example from tch repo plus amqp wrapper by me
unc0rr
parents:
diff changeset
    15