Commits on Source (69)
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
Betternickname See merge request UCC/discord-bot!5
-
tec authored
cleanup macros and reduce code duplication See merge request UCC/discord-bot!7
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
fixes See merge request UCC/discord-bot!8
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
of code
-
tec authored
move secrets to a separate config See merge request UCC/discord-bot!9
-
Ash authored
This reverts merge request !9
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
Ash authored7eb33928
-
Ash authored
cleanup See merge request UCC/discord-bot!10
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
grahame authored36c53318
-
grahame authored21f3bd95
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
tec authored
-
Tom Almeida authored
OpenSSL can be a pain to build at the best of times, so relying on a pure Rust implementation of block ciphers makes life a little easier.
-
Tom Almeida authored
-
Tom Almeida authored
[TEC], wtf if this. It's all nigh upon unreadable and is in a terrible code style
-
tec authored
So set features to default -framework
Showing
- .gitattributes 1 addition, 0 deletions.gitattributes
- .gitignore 0 additions, 1 deletion.gitignore
- BUILDING.md 8 additions, 0 deletionsBUILDING.md
- Cargo.lock 1985 additions, 0 deletionsCargo.lock
- Cargo.toml 21 additions, 12 deletionsCargo.toml
- blank_state.db 3 additions, 0 deletionsblank_state.db
- src/config.rs 18 additions, 1 deletionsrc/config.rs
- src/config.test.yml 2 additions, 0 deletionssrc/config.test.yml
- src/config.ucc.yml 36 additions, 10 deletionssrc/config.ucc.yml
- src/config.yml 1 addition, 0 deletionssrc/config.yml
- src/database.rs 128 additions, 0 deletionssrc/database.rs
- src/ldap.rs 90 additions, 0 deletionssrc/ldap.rs
- src/main.rs 27 additions, 225 deletionssrc/main.rs
- src/reaction_roles.rs 81 additions, 69 deletionssrc/reaction_roles.rs
- src/serenity_handler.rs 267 additions, 0 deletionssrc/serenity_handler.rs
- src/token_management.rs 12 additions, 9 deletionssrc/token_management.rs
- src/user_management.rs 475 additions, 75 deletionssrc/user_management.rs
- src/util.rs 43 additions, 2 deletionssrc/util.rs
- src/voting.rs 221 additions, 199 deletionssrc/voting.rs
.gitattributes
0 → 100644
BUILDING.md
0 → 100644
Cargo.lock
0 → 100644
This diff is collapsed.
... | @@ -5,16 +5,25 @@ authors = ["tec <tec@ucc.gu.uwa.edu.au>"] | ... | @@ -5,16 +5,25 @@ authors = ["tec <tec@ucc.gu.uwa.edu.au>"] |
edition = "2018" | edition = "2018" | ||
[dependencies] | [dependencies] | ||
base64 = "^0.11" | aes = "0.6" | ||
chrono = "^0.4.10" | async-trait = "0.1.42" | ||
lazy_static = "^1.4.0" | base64 = "0.13.0" | ||
log = "^0.4.8" | block-modes = "0.7" | ||
openssl = "^0.10" | chrono = "0.4.19" | ||
rand = "^0.7.2" | diesel = { version = "1.4.5", features = ["sqlite"] } | ||
serde = "^1.0.104" | |||
serde_yaml = "^0.8" | |||
serenity = "0.8.0" | |||
simplelog = "^0.7.4" | |||
guard = "0.5.0" | guard = "0.5.0" | ||
indexmap = { version = "1.3.1", features = ["serde-1"] } | ical = "0.7.0" | ||
rayon = "1.3.0" | indexmap = { version = "1.6.1", features = ["serde-1"] } | ||
lazy_static = "1.4.0" | |||
ldap3 = "0.9.1" | |||
log = "0.4.11" | |||
rand = "0.8.1" | |||
rayon = "1.5.0" | |||
regex = "1.4.3" | |||
reqwest = "0.11.0" | |||
serde = "1.0.118" | |||
serde_yaml = "0.8.15" | |||
serenity = { version = "0.10.1", default-features = false, features = ["builder", "cache", "client", "gateway", "model", "http", "utils", "rustls_backend"]} | |||
simplelog = "0.9.0" | |||
tokio = { version = "1", features = ["full"] } | |||
url = "2.2.0" |
File added
src/database.rs
0 → 100644
src/ldap.rs
0 → 100644
src/serenity_handler.rs
0 → 100644
This diff is collapsed.
This diff is collapsed.