dlt-core 0.15.0

Parser and writer for autosar DLT Diagnostic Log and Trace
Documentation
1
2
3
4
5
6
7
8
9
10
11
desc 'Format code with nightly cargo fmt'
task :format do
  sh 'cargo +nightly fmt'
end

desc 'Check'
task :check do
  sh 'cargo +nightly fmt -- --color=always --check'
  sh 'cargo clippy'
  sh 'cargo test'
end