mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2024-11-08 11:01:47 +01:00
context and querier done
This commit is contained in:
parent
3b5b59ba1c
commit
52a0db3e31
@ -15,11 +15,11 @@ Work in progress. This is not ready for usage yet
|
|||||||
- [x] Enums
|
- [x] Enums
|
||||||
- [x] Input
|
- [x] Input
|
||||||
- [x] Objects
|
- [x] Objects
|
||||||
- [ ] Implement context and querier
|
- [x] Implement context and querier
|
||||||
- [x] Marshaller
|
- [x] Marshaller
|
||||||
- [x] Querier
|
- [x] Querier
|
||||||
- [x] Context
|
- [x] Context
|
||||||
- [ ] Deserializer for nested response (bind)
|
- [x] Deserializer for nested response (bind)
|
||||||
- [ ] Add codegen to hook into querier
|
- [ ] Add codegen to hook into querier
|
||||||
- [ ] fix build / release cycle
|
- [ ] fix build / release cycle
|
||||||
- [ ] general api stabilisation
|
- [ ] general api stabilisation
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
use std::{
|
use std::{
|
||||||
fs::canonicalize,
|
fs::canonicalize,
|
||||||
io::{BufRead, BufReader},
|
io::{BufRead, BufReader},
|
||||||
@ -101,7 +100,7 @@ impl InnerCliSession {
|
|||||||
let stderr_bufr = BufReader::new(stderr);
|
let stderr_bufr = BufReader::new(stderr);
|
||||||
for line in stderr_bufr.lines() {
|
for line in stderr_bufr.lines() {
|
||||||
let out = line.unwrap();
|
let out = line.unwrap();
|
||||||
panic!("could not start dagger session: {}", out)
|
//panic!("could not start dagger session: {}", out)
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user