about summary refs log tree commit diff
path: root/Cargo.toml
AgeCommit message (Collapse)AuthorFilesLines
2018-10-06 chore: Bump version to 1.1.0Vincent Ambo1-2/+2
... in preparation of a new release!
2018-10-05 refactor: Replace reqwest library with ureqVincent Ambo1-2/+1
This replaces reqwest with the more simplistic ureq library for performing required HTTP requests. Reqwest comes with a lot of (tokio-based) machinery for high-performance requesting that is a bit out of scope for journaldriver's needs. This clocks in at 62 (!) fewer dependencies after the change, with equivalent functionality. Wew.
2018-06-17 chore: Bump to 1.0-rc1Vincent Ambo1-1/+1
2018-06-17 chore(cargo): Add dependency on medallion JWT libraryVincent Ambo1-2/+2
2018-06-17 chore(cargo): Enable chrono with serde as a dependencyVincent Ambo1-0/+1
2018-06-15 chore: License under GPL 3.0Vincent Ambo1-7/+8
2018-06-15 feat(main): Implement record conversion & flushing to APIVincent Ambo1-2/+2
This implements the "meat" of the initial version of journaldriver. Records from journald are converted into the representation required by Stackdriver and forwarded to the API. In this initial version journaldriver is only supported on instances running on GCP.
2018-05-28 feat(stackdriver): Add initial Stackdriver API type definitionsVincent Ambo1-0/+6
2018-05-27 feat(main): Implement receiver & flushing logicVincent Ambo1-0/+3
The only thing missing for a 0.1 test run is the actual gRPC call to Stackdriver.
2018-05-27 chore: Add project bootstrapVincent Ambo1-0/+11