obelix 0.2.0

Obélix is a tool to reduce Rust source files to produce MVEs
Documentation
1
2
3
4
5
6
7
8
9
10
11
struct Foo;

impl Foo {
    fn foo(&self, param: u32) -> u32 {
        param
    }
}

fn main() {
    Foo.foo("");
}