MCPcopy Index your code
hub / github.com/maciejhirsz/logos

github.com/maciejhirsz/logos @v0.16.1

Chat with this repo
repository ↗ · DeepWiki ↗ · release v0.16.1 ↗ · + Follow
538 symbols 1,053 edges 77 files 90 documented · 17% 20 cross-repo links updated 1d agov0.16.1 · 2026-01-30★ 3,53178 open issues

Browse by type

Functions 367 Types & classes 171
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Logos logo

Logos

Book Crates.io version shield Docs Crates.io license shield Code coverage

Create ridiculously fast Lexers.

Logos has two goals:

  • To make it easy to create a Lexer, so you can focus on more complex problems.
  • To make the generated Lexer faster than anything you'd write by hand.

To achieve those, Logos:

Example

use logos::Logos;

#[derive(Logos, Debug, PartialEq)]
#[logos(skip r"[ \t\n\f]+")] // Ignore this regex pattern between tokens
enum Token {
    // Tokens can be literal strings, of any length.
    #[token("fast")]
    Fast,

    #[token(".")]
    Period,

    // Or regular expressions.
    #[regex("[a-zA-Z]+")]
    Text,
}

fn main() {
    let mut lex = Token::lexer("Create ridiculously fast Lexers.");

    assert_eq!(lex.next(), Some(Ok(Token::Text)));
    assert_eq!(lex.span(), 0..6);
    assert_eq!(lex.slice(), "Create");

    assert_eq!(lex.next(), Some(Ok(Token::Text)));
    assert_eq!(lex.span(), 7..19);
    assert_eq!(lex.slice(), "ridiculously");

    assert_eq!(lex.next(), Some(Ok(Token::Fast)));
    assert_eq!(lex.span(), 20..24);
    assert_eq!(lex.slice(), "fast");

    assert_eq!(lex.next(), Some(Ok(Token::Text)));
    assert_eq!(lex.slice(), "Lexers");
    assert_eq!(lex.span(), 25..31);

    assert_eq!(lex.next(), Some(Ok(Token::Period)));
    assert_eq!(lex.span(), 31..32);
    assert_eq!(lex.slice(), ".");

    assert_eq!(lex.next(), None);
}

For more examples and documentation, please refer to the Logos handbook or the crate documentation.

How fast?

Ridiculously fast!

test identifiers                       ... bench:         647 ns/iter (+/- 27) = 1204 MB/s
test keywords_operators_and_punctators ... bench:       2,054 ns/iter (+/- 78) = 1037 MB/s
test strings                           ... bench:         553 ns/iter (+/- 34) = 1575 MB/s

Acknowledgements

Thank you

Logos is very much a labor of love. If you find it useful, consider getting me some coffee. ☕

If you'd like to contribute to Logos, then consider reading the Contributing guide.

Contributing

Logos welcome any kind of contribution: bug reports, suggestions, or new features!

Please use the issues or pull requests tabs, when appropriate.

To release a new version, follow the RELEASE-PROCESS

License

This code is distributed under the terms of both the MIT license and the Apache License (Version 2.0), choose whatever works for you.

See LICENSE-APACHE and LICENSE-MIT for details.

Extension points exported contracts — how you extend this code

Core symbols most depended-on inside this repo

Shape

Function 187
Method 180
Enum 122
Class 41
Interface 8

Languages

Rust100%

Modules by API surface

tests/tests/old_logos_bugs.rs51 symbols
logos-codegen/src/graph/mod.rs31 symbols
tests/tests/edgecase.rs27 symbols
logos-codegen/src/graph/export.rs26 symbols
tests/tests/simple.rs23 symbols
src/lexer.rs22 symbols
tests/tests/callbacks.rs20 symbols
logos-codegen/src/parser/nested.rs15 symbols
logos-codegen/src/generator/mod.rs14 symbols
tests/tests/advanced.rs13 symbols
logos-codegen/src/leaf.rs12 symbols
src/source.rs11 symbols

For agents

$ claude mcp add logos \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page