author | unC0Rr |
Fri, 03 Feb 2023 14:44:33 +0100 | |
branch | transitional_engine |
changeset 15916 | e82de0410da5 |
parent 15791 | 2528e3508bf4 |
permissions | -rw-r--r-- |
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 |