mirror of
https://git.ondrovo.com/MightyPork/group-actor.git
synced 2024-11-21 15:41:03 +00:00
change elefren linking
This commit is contained in:
parent
52cf8f8e97
commit
d02b47f750
3 changed files with 18 additions and 7 deletions
15
CHANGELOG.md
Normal file
15
CHANGELOG.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
# Changelog
|
||||
|
||||
## v0.2
|
||||
|
||||
- Add hashtag boosting and back-follow/unfollow
|
||||
- Add hashtag commands
|
||||
- Code reorganization
|
||||
- Improve greeting messages
|
||||
- Do not crash on unknown notification types (elefren patch)
|
||||
|
||||
## v0.1
|
||||
|
||||
This is the initial test release
|
||||
|
||||
.
|
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -276,6 +276,7 @@ checksum = "ea57b42383d091c85abcc2706240b94ab2a8fa1fc81c10ff23c4de06e2a90b5e"
|
|||
[[package]]
|
||||
name = "elefren"
|
||||
version = "0.22.0"
|
||||
source = "git+https://git.ondrovo.com/MightyPork/elefren-fork.git?rev=54a0e55#54a0e55964784368864f36580c5630f730bf72dc"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"doc-comment",
|
||||
|
|
|
@ -9,17 +9,14 @@ build = "build.rs"
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
#elefren = { version = "0.22.0", features = ["toml"] }
|
||||
elefren = { path = "../elefren22-fork" }
|
||||
#elefren = { git = "https://git.ondrovo.com/MightyPork/elefren-fork.git" }
|
||||
#elefren = { path = "../elefren22-fork" }
|
||||
elefren = { git = "https://git.ondrovo.com/MightyPork/elefren-fork.git", rev = "54a0e55" }
|
||||
|
||||
env_logger = "0.9.0"
|
||||
|
||||
#elefren = { path = "../elefren-fork" }
|
||||
log = "0.4.14"
|
||||
serde = "1"
|
||||
serde_json = "1"
|
||||
#smart-default = "0.6.0"
|
||||
anyhow = "1"
|
||||
clap = "2.33.0"
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
|
@ -32,5 +29,3 @@ once_cell = "1.8.0"
|
|||
|
||||
native-tls = "0.2.8"
|
||||
websocket = "0.26.2"
|
||||
|
||||
#tokio = { version = "0.2.22", features = ["full"] }
|
||||
|
|
Loading…
Reference in a new issue