├── .cargo └── config ├── .gcloudignore ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── DirShim.mk ├── LICENSE ├── Makefile ├── README.md ├── cargo-registry ├── README.md ├── ansi_term ├── arrayvec-0.5.1 ├── atty ├── bitflags-1.2.1 ├── byteorder-1.3.4 ├── cfg-if ├── chrono ├── clap ├── corepack ├── elf ├── filetime ├── futures ├── futures-channel ├── futures-core ├── futures-io ├── futures-sink ├── futures-task ├── futures-util ├── libc ├── linked-list-allocator ├── num-integer ├── num-traits ├── pin-utils ├── proc-macro2-1.0.6 ├── quote ├── quote-1.0.2 ├── serde ├── serde_derive ├── spin ├── static_assertions-1.1.0 ├── strsim ├── structopt ├── structopt-derive ├── syn ├── syn-1.0.11 ├── synstructure-0.12.4 ├── tar ├── termion ├── textwrap ├── time ├── unicode-width ├── unicode-xid-0.2.0 ├── ux-0.1.3 ├── vec_map ├── xattr ├── zerocopy-0.3.0 └── zerocopy-derive-0.2.0 ├── doc ├── build_system.md ├── gcb.md ├── make_targets.md └── nvcounter_syscalls.md ├── gcb ├── Dockerfile.tock-toolchain └── tock-toolchain.yaml ├── kernel ├── .cargo │ └── config ├── Build.mk ├── Cargo.toml ├── Makefile ├── chip_layout.ld ├── chip_layout_a.ld ├── chip_layout_b.ld ├── golf2 │ ├── .gitignore │ ├── Cargo.toml │ ├── Xargo.toml │ ├── build.rs │ └── src │ │ └── main.rs ├── h1 │ ├── Cargo.toml │ ├── build.rs │ ├── layout.ld │ └── src │ │ ├── chip.rs │ │ ├── crypto │ │ ├── aes.rs │ │ ├── dcrypto.rs │ │ ├── keymgr.rs │ │ ├── mod.rs │ │ └── sha.rs │ │ ├── fuse.rs │ │ ├── globalsec.rs │ │ ├── gpio.rs │ │ ├── hil │ │ ├── aes.rs │ │ ├── common.rs │ │ ├── digest.rs │ │ ├── flash │ │ │ ├── driver.rs │ │ │ ├── fake.rs │ │ │ ├── flash.rs │ │ │ ├── flash_test.rs │ │ │ ├── h1_hw.rs │ │ │ ├── hardware.rs │ │ │ ├── mod.rs │ │ │ ├── smart_program.rs │ │ │ └── virtual_flash.rs │ │ ├── fuse.rs │ │ ├── globalsec.rs │ │ ├── mod.rs │ │ ├── personality.rs │ │ ├── reset.rs │ │ ├── rng.rs │ │ ├── spi_device.rs │ │ └── spi_host.rs │ │ ├── io.rs │ │ ├── lib.rs │ │ ├── nvcounter │ │ ├── capsule.rs │ │ ├── internal.rs │ │ ├── mod.rs │ │ ├── nvcounter_test.rs │ │ └── traits.rs │ │ ├── personality.rs │ │ ├── pinmux.rs │ │ ├── pmu.rs │ │ ├── rng_test.rs │ │ ├── spi_device.rs │ │ ├── spi_host.rs │ │ ├── test_dcrypto.rs │ │ ├── test_rng.rs │ │ ├── timels.rs │ │ ├── timeus.rs │ │ ├── trng.rs │ │ ├── uart.rs │ │ └── usb │ │ ├── constants.rs │ │ ├── driver.rs │ │ ├── mod.rs │ │ ├── registers.rs │ │ ├── serialize.rs │ │ ├── types.rs │ │ └── u2f.rs ├── h1_syscalls │ ├── Cargo.toml │ └── src │ │ ├── aes.rs │ │ ├── dcrypto.rs │ │ ├── dcrypto_test.rs │ │ ├── digest.rs │ │ ├── flash.rs │ │ ├── fuse.rs │ │ ├── globalsec.rs │ │ ├── lib.rs │ │ ├── nvcounter_syscall.rs │ │ ├── personality.rs │ │ ├── reset.rs │ │ ├── spi_device.rs │ │ └── spi_host.rs ├── kernel_layout.ld ├── layout.ld ├── layout_a.ld ├── layout_b.ld ├── papa │ ├── .gitignore │ ├── Cargo.toml │ ├── build.rs │ └── src │ │ └── main.rs └── rust-toolchain ├── pull_request_template.md ├── runner ├── Build.mk ├── Cargo.toml ├── Makefile ├── rust-toolchain └── src │ └── main.rs ├── shared-lib └── spiutils │ ├── Cargo.toml │ ├── src │ ├── compat │ │ ├── firmware.rs │ │ └── mod.rs │ ├── driver │ │ ├── firmware.rs │ │ ├── mod.rs │ │ ├── reset.rs │ │ └── spi_device.rs │ ├── io.rs │ ├── lib.rs │ └── protocol │ │ ├── error.rs │ │ ├── firmware.rs │ │ ├── flash.rs │ │ ├── mod.rs │ │ ├── payload.rs │ │ └── wire.rs │ └── tool │ ├── Cargo.toml │ └── src │ └── main.rs ├── third_party ├── Build.mk ├── Makefile ├── ansi_term │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENCE │ ├── README.md │ ├── examples │ │ └── colours.rs │ └── src │ │ ├── ansi.rs │ │ ├── debug.rs │ │ ├── difference.rs │ │ ├── display.rs │ │ ├── lib.rs │ │ ├── style.rs │ │ ├── windows.rs │ │ └── write.rs ├── arrayvec-0.5.1 │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.rst │ ├── benches │ │ ├── arraystring.rs │ │ └── extend.rs │ ├── custom.css │ ├── src │ │ ├── array.rs │ │ ├── array_string.rs │ │ ├── char.rs │ │ ├── errors.rs │ │ ├── lib.rs │ │ └── maybe_uninit.rs │ └── tests │ │ ├── serde.rs │ │ └── tests.rs ├── atty │ ├── .cargo-checksum.json │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ ├── appveyor.yml │ ├── examples │ │ └── atty.rs │ ├── rustfmt.toml │ └── src │ │ └── lib.rs ├── bitflags-1.2.1 │ ├── .cargo-checksum.json │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── build.rs │ └── src │ │ ├── example_generated.rs │ │ └── lib.rs ├── byteorder-1.3.4 │ ├── .cargo-checksum.json │ ├── CHANGELOG.md │ ├── COPYING │ ├── Cargo.toml │ ├── LICENSE-MIT │ ├── README.md │ ├── UNLICENSE │ ├── benches │ │ └── bench.rs │ ├── build.rs │ └── src │ │ ├── io.rs │ │ └── lib.rs ├── cfg-if │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── src │ │ └── lib.rs │ └── tests │ │ └── xcrate.rs ├── chromiumos-ec │ ├── Makefile │ ├── include │ │ ├── LICENSE │ │ ├── common.h │ │ ├── console.h │ │ ├── console_channel.inc │ │ ├── sha256.h │ │ ├── signed_header.h │ │ ├── system.h │ │ └── timer.h │ └── sha256.c ├── chrono │ ├── .cargo-checksum.json │ ├── AUTHORS.txt │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── appveyor.yml │ └── src │ │ ├── date.rs │ │ ├── datetime.rs │ │ ├── div.rs │ │ ├── format │ │ ├── mod.rs │ │ ├── parse.rs │ │ ├── parsed.rs │ │ ├── scan.rs │ │ └── strftime.rs │ │ ├── lib.rs │ │ ├── naive │ │ ├── date.rs │ │ ├── datetime.rs │ │ ├── internals.rs │ │ ├── isoweek.rs │ │ └── time.rs │ │ ├── offset │ │ ├── fixed.rs │ │ ├── local.rs │ │ ├── mod.rs │ │ └── utc.rs │ │ ├── oldtime.rs │ │ └── round.rs ├── clap │ ├── .cargo-checksum.json │ ├── CHANGELOG.md │ ├── CONTRIBUTORS.md │ ├── Cargo.toml │ ├── LICENSE-MIT │ ├── README.md │ ├── SPONSORS.md │ ├── clap-test.rs │ ├── index.html │ ├── justfile │ ├── rustfmt.toml │ └── src │ │ ├── app │ │ ├── help.rs │ │ ├── meta.rs │ │ ├── mod.rs │ │ ├── parser.rs │ │ ├── settings.rs │ │ ├── usage.rs │ │ └── validator.rs │ │ ├── args │ │ ├── any_arg.rs │ │ ├── arg.rs │ │ ├── arg_builder │ │ │ ├── base.rs │ │ │ ├── flag.rs │ │ │ ├── mod.rs │ │ │ ├── option.rs │ │ │ ├── positional.rs │ │ │ ├── switched.rs │ │ │ └── valued.rs │ │ ├── arg_matcher.rs │ │ ├── arg_matches.rs │ │ ├── group.rs │ │ ├── macros.rs │ │ ├── matched_arg.rs │ │ ├── mod.rs │ │ ├── settings.rs │ │ └── subcommand.rs │ │ ├── completions │ │ ├── bash.rs │ │ ├── fish.rs │ │ ├── macros.rs │ │ ├── mod.rs │ │ ├── powershell.rs │ │ ├── shell.rs │ │ └── zsh.rs │ │ ├── errors.rs │ │ ├── fmt.rs │ │ ├── lib.rs │ │ ├── macros.rs │ │ ├── map.rs │ │ ├── osstringext.rs │ │ ├── strext.rs │ │ ├── suggestions.rs │ │ └── usage_parser.rs ├── corepack │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ └── src │ │ ├── de.rs │ │ ├── defs.rs │ │ ├── error.rs │ │ ├── ext_deserializer.rs │ │ ├── lib.rs │ │ ├── map_serializer.rs │ │ ├── read.rs │ │ ├── seq_deserializer.rs │ │ ├── seq_serializer.rs │ │ ├── ser.rs │ │ └── variant_deserializer.rs ├── elf │ ├── .cargo-checksum.json │ ├── COPYRIGHT │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src │ │ ├── lib.rs │ │ ├── types.rs │ │ └── utils.rs ├── filetime │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── appveyor.yml │ └── src │ │ ├── lib.rs │ │ ├── redox.rs │ │ ├── unix │ │ ├── linux.rs │ │ ├── mod.rs │ │ ├── utimensat.rs │ │ └── utimes.rs │ │ └── windows.rs ├── futures-channel │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ └── sync_mpsc.rs │ ├── src │ │ ├── lib.rs │ │ ├── lock.rs │ │ ├── mpsc │ │ │ ├── mod.rs │ │ │ ├── queue.rs │ │ │ └── sink_impl.rs │ │ └── oneshot.rs │ └── tests │ │ ├── channel.rs │ │ ├── mpsc-close.rs │ │ ├── mpsc.rs │ │ └── oneshot.rs ├── futures-core │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ │ ├── future.rs │ │ ├── lib.rs │ │ ├── stream.rs │ │ └── task │ │ ├── __internal │ │ ├── atomic_waker.rs │ │ └── mod.rs │ │ ├── mod.rs │ │ └── poll.rs ├── futures-io │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ │ └── lib.rs ├── futures-sink │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ │ └── lib.rs ├── futures-task │ ├── .cargo-checksum.json │ ├── Cargo.toml │ └── src │ │ ├── arc_wake.rs │ │ ├── future_obj.rs │ │ ├── lib.rs │ │ ├── noop_waker.rs │ │ ├── spawn.rs │ │ ├── waker.rs │ │ └── waker_ref.rs ├── futures-util │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── benches │ │ └── futures_unordered.rs │ ├── benches_disabled │ │ └── bilock.rs │ └── src │ │ ├── async_await │ │ ├── join_mod.rs │ │ ├── mod.rs │ │ ├── pending.rs │ │ ├── poll.rs │ │ ├── random.rs │ │ └── select_mod.rs │ │ ├── compat │ │ ├── compat01as03.rs │ │ ├── compat03as01.rs │ │ ├── executor.rs │ │ └── mod.rs │ │ ├── future │ │ ├── abortable.rs │ │ ├── either.rs │ │ ├── future │ │ │ ├── catch_unwind.rs │ │ │ ├── chain.rs │ │ │ ├── flatten.rs │ │ │ ├── flatten_stream.rs │ │ │ ├── fuse.rs │ │ │ ├── inspect.rs │ │ │ ├── into_stream.rs │ │ │ ├── map.rs │ │ │ ├── mod.rs │ │ │ ├── never_error.rs │ │ │ ├── remote_handle.rs │ │ │ ├── shared.rs │ │ │ ├── then.rs │ │ │ └── unit_error.rs │ │ ├── join.rs │ │ ├── join_all.rs │ │ ├── lazy.rs │ │ ├── maybe_done.rs │ │ ├── mod.rs │ │ ├── option.rs │ │ ├── pending.rs │ │ ├── poll_fn.rs │ │ ├── ready.rs │ │ ├── select.rs │ │ ├── select_all.rs │ │ ├── select_ok.rs │ │ ├── try_future │ │ │ ├── and_then.rs │ │ │ ├── err_into.rs │ │ │ ├── flatten_sink.rs │ │ │ ├── flatten_stream_sink.rs │ │ │ ├── inspect_err.rs │ │ │ ├── inspect_ok.rs │ │ │ ├── into_future.rs │ │ │ ├── map_err.rs │ │ │ ├── map_ok.rs │ │ │ ├── mod.rs │ │ │ ├── or_else.rs │ │ │ ├── try_chain.rs │ │ │ ├── try_flatten_stream.rs │ │ │ └── unwrap_or_else.rs │ │ ├── try_join.rs │ │ ├── try_join_all.rs │ │ └── try_select.rs │ │ ├── io │ │ ├── allow_std.rs │ │ ├── buf_reader.rs │ │ ├── buf_writer.rs │ │ ├── chain.rs │ │ ├── close.rs │ │ ├── copy.rs │ │ ├── copy_buf.rs │ │ ├── cursor.rs │ │ ├── empty.rs │ │ ├── flush.rs │ │ ├── into_sink.rs │ │ ├── lines.rs │ │ ├── mod.rs │ │ ├── read.rs │ │ ├── read_exact.rs │ │ ├── read_line.rs │ │ ├── read_to_end.rs │ │ ├── read_to_string.rs │ │ ├── read_until.rs │ │ ├── read_vectored.rs │ │ ├── repeat.rs │ │ ├── seek.rs │ │ ├── sink.rs │ │ ├── split.rs │ │ ├── take.rs │ │ ├── window.rs │ │ ├── write.rs │ │ ├── write_all.rs │ │ └── write_vectored.rs │ │ ├── lib.rs │ │ ├── lock │ │ ├── bilock.rs │ │ ├── mod.rs │ │ └── mutex.rs │ │ ├── never.rs │ │ ├── sink │ │ ├── buffer.rs │ │ ├── close.rs │ │ ├── drain.rs │ │ ├── err_into.rs │ │ ├── fanout.rs │ │ ├── flush.rs │ │ ├── map_err.rs │ │ ├── mod.rs │ │ ├── send.rs │ │ ├── send_all.rs │ │ ├── with.rs │ │ └── with_flat_map.rs │ │ ├── stream │ │ ├── empty.rs │ │ ├── futures_ordered.rs │ │ ├── futures_unordered │ │ │ ├── abort.rs │ │ │ ├── iter.rs │ │ │ ├── mod.rs │ │ │ ├── ready_to_run_queue.rs │ │ │ └── task.rs │ │ ├── iter.rs │ │ ├── mod.rs │ │ ├── once.rs │ │ ├── pending.rs │ │ ├── poll_fn.rs │ │ ├── repeat.rs │ │ ├── select.rs │ │ ├── select_all.rs │ │ ├── stream │ │ │ ├── buffer_unordered.rs │ │ │ ├── buffered.rs │ │ │ ├── catch_unwind.rs │ │ │ ├── chain.rs │ │ │ ├── chunks.rs │ │ │ ├── collect.rs │ │ │ ├── concat.rs │ │ │ ├── enumerate.rs │ │ │ ├── filter.rs │ │ │ ├── filter_map.rs │ │ │ ├── flatten.rs │ │ │ ├── fold.rs │ │ │ ├── for_each.rs │ │ │ ├── for_each_concurrent.rs │ │ │ ├── forward.rs │ │ │ ├── fuse.rs │ │ │ ├── inspect.rs │ │ │ ├── into_future.rs │ │ │ ├── map.rs │ │ │ ├── mod.rs │ │ │ ├── next.rs │ │ │ ├── peek.rs │ │ │ ├── select_next_some.rs │ │ │ ├── skip.rs │ │ │ ├── skip_while.rs │ │ │ ├── split.rs │ │ │ ├── take.rs │ │ │ ├── take_while.rs │ │ │ ├── then.rs │ │ │ └── zip.rs │ │ ├── try_stream │ │ │ ├── and_then.rs │ │ │ ├── err_into.rs │ │ │ ├── inspect_err.rs │ │ │ ├── inspect_ok.rs │ │ │ ├── into_async_read.rs │ │ │ ├── into_stream.rs │ │ │ ├── map_err.rs │ │ │ ├── map_ok.rs │ │ │ ├── mod.rs │ │ │ ├── or_else.rs │ │ │ ├── try_buffer_unordered.rs │ │ │ ├── try_collect.rs │ │ │ ├── try_concat.rs │ │ │ ├── try_filter.rs │ │ │ ├── try_filter_map.rs │ │ │ ├── try_flatten.rs │ │ │ ├── try_fold.rs │ │ │ ├── try_for_each.rs │ │ │ ├── try_for_each_concurrent.rs │ │ │ ├── try_next.rs │ │ │ └── try_skip_while.rs │ │ └── unfold.rs │ │ └── task │ │ ├── mod.rs │ │ └── spawn.rs ├── futures │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── src │ │ └── lib.rs │ ├── tests │ │ ├── abortable.rs │ │ ├── arc_wake.rs │ │ ├── async_await_macros.rs │ │ ├── atomic_waker.rs │ │ ├── basic_combinators.rs │ │ ├── buffer_unordered.rs │ │ ├── compat.rs │ │ ├── eager_drop.rs │ │ ├── eventual.rs │ │ ├── fuse.rs │ │ ├── future_obj.rs │ │ ├── future_try_flatten_stream.rs │ │ ├── futures_ordered.rs │ │ ├── futures_unordered.rs │ │ ├── inspect.rs │ │ ├── io_buf_reader.rs │ │ ├── io_buf_writer.rs │ │ ├── io_cursor.rs │ │ ├── io_lines.rs │ │ ├── io_read_exact.rs │ │ ├── io_read_line.rs │ │ ├── io_read_to_string.rs │ │ ├── io_read_until.rs │ │ ├── io_window.rs │ │ ├── join_all.rs │ │ ├── macro_comma_support.rs │ │ ├── mutex.rs │ │ ├── object_safety.rs │ │ ├── oneshot.rs │ │ ├── ready_queue.rs │ │ ├── recurse.rs │ │ ├── select_all.rs │ │ ├── select_ok.rs │ │ ├── shared.rs │ │ ├── sink.rs │ │ ├── sink_fanout.rs │ │ ├── split.rs │ │ ├── stream.rs │ │ ├── stream_catch_unwind.rs │ │ ├── stream_into_async_read.rs │ │ ├── stream_select_all.rs │ │ ├── stream_select_next_some.rs │ │ ├── try_join_all.rs │ │ └── unfold.rs │ └── tests_disabled │ │ ├── all.rs │ │ ├── bilock.rs │ │ └── stream.rs ├── libc │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── MODIFICATIONS.md │ ├── build.rs │ └── src │ │ ├── fixed_width_ints.rs │ │ ├── lib.rs │ │ ├── macros.rs │ │ └── unix │ │ ├── align.rs │ │ ├── linux_like │ │ ├── android │ │ │ ├── b32 │ │ │ │ ├── arm.rs │ │ │ │ ├── mod.rs │ │ │ │ └── x86 │ │ │ │ │ ├── align.rs │ │ │ │ │ └── mod.rs │ │ │ ├── b64 │ │ │ │ ├── aarch64 │ │ │ │ │ ├── align.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── mod.rs │ │ │ │ └── x86_64 │ │ │ │ │ ├── align.rs │ │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── emscripten │ │ │ ├── align.rs │ │ │ ├── mod.rs │ │ │ └── no_align.rs │ │ ├── linux │ │ │ ├── align.rs │ │ │ ├── arch │ │ │ │ ├── generic │ │ │ │ │ └── mod.rs │ │ │ │ ├── mips │ │ │ │ │ └── mod.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── powerpc │ │ │ │ │ └── mod.rs │ │ │ │ └── sparc │ │ │ │ │ └── mod.rs │ │ │ ├── gnu │ │ │ │ ├── align.rs │ │ │ │ ├── b32 │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── align.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── mips │ │ │ │ │ │ ├── align.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── powerpc.rs │ │ │ │ │ ├── riscv32 │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── sparc │ │ │ │ │ │ ├── align.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── align.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ ├── b64 │ │ │ │ │ ├── aarch64 │ │ │ │ │ │ ├── align.rs │ │ │ │ │ │ ├── ilp32.rs │ │ │ │ │ │ ├── lp64.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── mips64 │ │ │ │ │ │ ├── align.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── powerpc64 │ │ │ │ │ │ ├── align.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── riscv64 │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── s390x.rs │ │ │ │ │ ├── sparc64 │ │ │ │ │ │ ├── align.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ └── x86_64 │ │ │ │ │ │ ├── align.rs │ │ │ │ │ │ ├── mod.rs │ │ │ │ │ │ ├── not_x32.rs │ │ │ │ │ │ └── x32.rs │ │ │ │ ├── mod.rs │ │ │ │ └── no_align.rs │ │ │ ├── mod.rs │ │ │ ├── musl │ │ │ │ ├── b32 │ │ │ │ │ ├── arm │ │ │ │ │ │ ├── align.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── hexagon.rs │ │ │ │ │ ├── mips │ │ │ │ │ │ ├── align.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── powerpc.rs │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── align.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ ├── b64 │ │ │ │ │ ├── aarch64 │ │ │ │ │ │ ├── align.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── mips64.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── powerpc64.rs │ │ │ │ │ ├── s390x.rs │ │ │ │ │ └── x86_64 │ │ │ │ │ │ ├── align.rs │ │ │ │ │ │ └── mod.rs │ │ │ │ └── mod.rs │ │ │ ├── no_align.rs │ │ │ └── uclibc │ │ │ │ ├── align.rs │ │ │ │ ├── arm │ │ │ │ ├── align.rs │ │ │ │ ├── mod.rs │ │ │ │ └── no_align.rs │ │ │ │ ├── mips │ │ │ │ ├── mips32 │ │ │ │ │ ├── align.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── no_align.rs │ │ │ │ ├── mips64 │ │ │ │ │ ├── align.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── no_align.rs │ │ │ │ └── mod.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── no_align.rs │ │ │ │ └── x86_64 │ │ │ │ ├── l4re.rs │ │ │ │ ├── mod.rs │ │ │ │ └── other.rs │ │ └── mod.rs │ │ ├── mod.rs │ │ └── no_align.rs ├── linked-list-allocator │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── MODIFICATIONS.md │ ├── README.md │ └── src │ │ ├── hole.rs │ │ ├── lib.rs │ │ └── test.rs ├── num-integer │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── RELEASES.md │ ├── bors.toml │ ├── ci │ │ ├── rustup.sh │ │ └── test_full.sh │ └── src │ │ └── lib.rs ├── num-traits │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── RELEASES.md │ ├── bors.toml │ ├── ci │ │ ├── rustup.sh │ │ └── test_full.sh │ └── src │ │ ├── bounds.rs │ │ ├── cast.rs │ │ ├── float.rs │ │ ├── identities.rs │ │ ├── int.rs │ │ ├── lib.rs │ │ ├── macros.rs │ │ ├── ops │ │ ├── checked.rs │ │ ├── inv.rs │ │ ├── mod.rs │ │ ├── saturating.rs │ │ └── wrapping.rs │ │ ├── pow.rs │ │ ├── real.rs │ │ └── sign.rs ├── pin-utils │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── src │ │ ├── lib.rs │ │ ├── projection.rs │ │ └── stack_pin.rs │ └── tests │ │ ├── projection.rs │ │ └── stack_pin.rs ├── proc-macro2-1.0.6 │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── build.rs │ ├── src │ │ ├── fallback.rs │ │ ├── lib.rs │ │ ├── strnom.rs │ │ └── wrapper.rs │ └── tests │ │ ├── features.rs │ │ ├── marker.rs │ │ └── test.rs ├── quote-1.0.2 │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── src │ │ ├── ext.rs │ │ ├── format.rs │ │ ├── ident_fragment.rs │ │ ├── lib.rs │ │ ├── runtime.rs │ │ ├── spanned.rs │ │ └── to_tokens.rs │ └── tests │ │ ├── compiletest.rs │ │ ├── test.rs │ │ └── ui │ │ ├── does-not-have-iter-interpolated-dup.rs │ │ ├── does-not-have-iter-interpolated.rs │ │ ├── does-not-have-iter-separated.rs │ │ ├── does-not-have-iter.rs │ │ ├── not-quotable.rs │ │ ├── not-repeatable.rs │ │ └── wrong-type-span.rs ├── quote │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── src │ │ ├── ext.rs │ │ ├── lib.rs │ │ └── to_tokens.rs │ └── tests │ │ └── test.rs ├── rustc-demangle │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src │ │ ├── legacy.rs │ │ ├── lib.rs │ │ └── v0.rs ├── serde │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── build.rs │ ├── crates-io.md │ └── src │ │ ├── de │ │ ├── from_primitive.rs │ │ ├── ignored_any.rs │ │ ├── impls.rs │ │ ├── mod.rs │ │ ├── utf8.rs │ │ └── value.rs │ │ ├── export.rs │ │ ├── integer128.rs │ │ ├── lib.rs │ │ ├── macros.rs │ │ ├── private │ │ ├── de.rs │ │ ├── macros.rs │ │ ├── mod.rs │ │ └── ser.rs │ │ └── ser │ │ ├── impls.rs │ │ ├── impossible.rs │ │ └── mod.rs ├── serde_derive │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── crates-io.md │ └── src │ │ ├── bound.rs │ │ ├── de.rs │ │ ├── dummy.rs │ │ ├── fragment.rs │ │ ├── internals │ │ ├── ast.rs │ │ ├── attr.rs │ │ ├── case.rs │ │ ├── check.rs │ │ ├── ctxt.rs │ │ ├── mod.rs │ │ └── symbol.rs │ │ ├── lib.rs │ │ ├── pretend.rs │ │ ├── ser.rs │ │ └── try.rs ├── spin │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE │ ├── MODIFICATIONS.md │ ├── README.md │ └── src │ │ ├── lib.rs │ │ ├── mutex.rs │ │ ├── once.rs │ │ └── rw_lock.rs ├── static_assertions-1.1.0 │ ├── .cargo-checksum.json │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src │ │ ├── assert_cfg.rs │ │ ├── assert_eq_align.rs │ │ ├── assert_eq_size.rs │ │ ├── assert_fields.rs │ │ ├── assert_impl.rs │ │ ├── assert_obj_safe.rs │ │ ├── assert_trait.rs │ │ ├── assert_type.rs │ │ ├── const_assert.rs │ │ └── lib.rs ├── strsim │ ├── .cargo-checksum.json │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ ├── appveyor.yml │ ├── dev │ ├── src │ │ └── lib.rs │ └── tests │ │ └── lib.rs ├── structopt-derive │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ └── src │ │ ├── attrs.rs │ │ └── lib.rs ├── structopt │ ├── .cargo-checksum.json │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── examples │ │ ├── at_least_two.rs │ │ ├── basic.rs │ │ ├── deny_missing_docs.rs │ │ ├── enum_in_args.rs │ │ ├── enum_tuple.rs │ │ ├── example.rs │ │ ├── flatten.rs │ │ ├── git.rs │ │ ├── group.rs │ │ ├── keyvalue.rs │ │ ├── no_version.rs │ │ ├── raw_attributes.rs │ │ └── subcommand_aliases.rs │ ├── src │ │ └── lib.rs │ └── tests │ │ ├── arguments.rs │ │ ├── author_version_about.rs │ │ ├── custom-string-parsers.rs │ │ ├── deny-warnings.rs │ │ ├── doc-comments-help.rs │ │ ├── flags.rs │ │ ├── flatten.rs │ │ ├── nested-subcommands.rs │ │ ├── options.rs │ │ ├── privacy.rs │ │ ├── raw_attributes.rs │ │ └── subcommands.rs ├── syn-1.0.11 │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── benches │ │ ├── file.rs │ │ └── rust.rs │ ├── build.rs │ ├── src │ │ ├── attr.rs │ │ ├── await.rs │ │ ├── bigint.rs │ │ ├── buffer.rs │ │ ├── custom_keyword.rs │ │ ├── custom_punctuation.rs │ │ ├── data.rs │ │ ├── derive.rs │ │ ├── discouraged.rs │ │ ├── error.rs │ │ ├── export.rs │ │ ├── expr.rs │ │ ├── ext.rs │ │ ├── file.rs │ │ ├── gen │ │ │ ├── fold.rs │ │ │ ├── visit.rs │ │ │ └── visit_mut.rs │ │ ├── gen_helper.rs │ │ ├── generics.rs │ │ ├── group.rs │ │ ├── ident.rs │ │ ├── item.rs │ │ ├── keyword.rs │ │ ├── lib.rs │ │ ├── lifetime.rs │ │ ├── lit.rs │ │ ├── lookahead.rs │ │ ├── mac.rs │ │ ├── macros.rs │ │ ├── op.rs │ │ ├── parse.rs │ │ ├── parse_macro_input.rs │ │ ├── parse_quote.rs │ │ ├── pat.rs │ │ ├── path.rs │ │ ├── print.rs │ │ ├── punctuated.rs │ │ ├── sealed.rs │ │ ├── span.rs │ │ ├── spanned.rs │ │ ├── stmt.rs │ │ ├── thread.rs │ │ ├── token.rs │ │ ├── tt.rs │ │ └── ty.rs │ └── tests │ │ ├── common │ │ ├── eq.rs │ │ ├── mod.rs │ │ └── parse.rs │ │ ├── debug │ │ ├── gen.rs │ │ └── mod.rs │ │ ├── features │ │ ├── error.rs │ │ └── mod.rs │ │ ├── macros │ │ └── mod.rs │ │ ├── repo │ │ └── mod.rs │ │ ├── test_asyncness.rs │ │ ├── test_attribute.rs │ │ ├── test_derive_input.rs │ │ ├── test_expr.rs │ │ ├── test_generics.rs │ │ ├── test_grouping.rs │ │ ├── test_ident.rs │ │ ├── test_iterators.rs │ │ ├── test_lit.rs │ │ ├── test_meta.rs │ │ ├── test_parse_buffer.rs │ │ ├── test_pat.rs │ │ ├── test_precedence.rs │ │ ├── test_receiver.rs │ │ ├── test_round_trip.rs │ │ ├── test_should_parse.rs │ │ ├── test_size.rs │ │ ├── test_token_trees.rs │ │ ├── test_visibility.rs │ │ └── zzz_stable.rs ├── syn │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src │ │ ├── attr.rs │ │ ├── buffer.rs │ │ ├── data.rs │ │ ├── derive.rs │ │ ├── error.rs │ │ ├── expr.rs │ │ ├── file.rs │ │ ├── gen │ │ ├── fold.rs │ │ ├── visit.rs │ │ └── visit_mut.rs │ │ ├── gen_helper.rs │ │ ├── generics.rs │ │ ├── item.rs │ │ ├── lib.rs │ │ ├── lifetime.rs │ │ ├── lit.rs │ │ ├── mac.rs │ │ ├── macros.rs │ │ ├── op.rs │ │ ├── parse_quote.rs │ │ ├── parsers.rs │ │ ├── path.rs │ │ ├── punctuated.rs │ │ ├── spanned.rs │ │ ├── synom.rs │ │ ├── token.rs │ │ ├── tt.rs │ │ └── ty.rs ├── synstructure-0.12.4 │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ └── src │ │ ├── lib.rs │ │ └── macros.rs ├── tar │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── appveyor.yml │ ├── examples │ │ ├── extract_file.rs │ │ ├── list.rs │ │ ├── raw_list.rs │ │ └── write.rs │ ├── src │ │ ├── archive.rs │ │ ├── builder.rs │ │ ├── entry.rs │ │ ├── entry_type.rs │ │ ├── error.rs │ │ ├── header.rs │ │ ├── lib.rs │ │ └── pax.rs │ └── tests │ │ ├── all.rs │ │ ├── archives │ │ ├── directory.tar │ │ ├── duplicate_dirs.tar │ │ ├── empty_filename.tar │ │ ├── file_times.tar │ │ ├── link.tar │ │ ├── pax.tar │ │ ├── reading_files.tar │ │ ├── simple.tar │ │ ├── spaces.tar │ │ ├── sparse.tar │ │ └── xattrs.tar │ │ ├── entry.rs │ │ └── header │ │ └── mod.rs ├── termion │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── alternate_screen.rs │ │ ├── alternate_screen_raw.rs │ │ ├── async.rs │ │ ├── click.rs │ │ ├── color.rs │ │ ├── commie.rs │ │ ├── detect_color.rs │ │ ├── is_tty.rs │ │ ├── keys.rs │ │ ├── mouse.rs │ │ ├── rainbow.rs │ │ ├── read.rs │ │ ├── rustc_fun.rs │ │ ├── simple.rs │ │ ├── size.rs │ │ └── truecolor.rs │ ├── logo.svg │ └── src │ │ ├── async.rs │ │ ├── clear.rs │ │ ├── color.rs │ │ ├── cursor.rs │ │ ├── event.rs │ │ ├── input.rs │ │ ├── lib.rs │ │ ├── macros.rs │ │ ├── raw.rs │ │ ├── screen.rs │ │ ├── scroll.rs │ │ ├── style.rs │ │ └── sys │ │ ├── redox │ │ ├── attr.rs │ │ ├── mod.rs │ │ ├── size.rs │ │ └── tty.rs │ │ └── unix │ │ ├── attr.rs │ │ ├── mod.rs │ │ ├── size.rs │ │ └── tty.rs ├── textwrap │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ ├── benches │ │ └── linear.rs │ ├── examples │ │ ├── layout.rs │ │ └── termwidth.rs │ ├── src │ │ └── lib.rs │ └── tests │ │ └── version-numbers.rs ├── time │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── appveyor.yml │ ├── benches │ │ └── precise_time_ns.rs │ └── src │ │ ├── display.rs │ │ ├── duration.rs │ │ ├── lib.rs │ │ ├── parse.rs │ │ └── sys.rs ├── unicode-width │ ├── .cargo-checksum.json │ ├── COPYRIGHT │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── scripts │ │ └── unicode.py │ └── src │ │ ├── lib.rs │ │ ├── tables.rs │ │ └── tests.rs ├── unicode-xid-0.2.0 │ ├── .cargo-checksum.json │ ├── COPYRIGHT │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src │ │ ├── lib.rs │ │ ├── tables.rs │ │ └── tests.rs ├── ux-0.1.3 │ ├── .cargo-checksum.json │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src │ │ ├── conversion.rs │ │ └── lib.rs ├── vec_map │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── deploy-docs.sh │ └── src │ │ └── lib.rs ├── xattr │ ├── .cargo-checksum.json │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ ├── rustfmt.toml │ ├── src │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── sys │ │ │ ├── bsd.rs │ │ │ ├── linux_macos │ │ │ │ ├── linux.rs │ │ │ │ ├── macos.rs │ │ │ │ └── mod.rs │ │ │ ├── mod.rs │ │ │ └── unsupported.rs │ │ └── util.rs │ └── tests │ │ └── main.rs ├── zerocopy-0.3.0 │ ├── .cargo-checksum.json │ ├── Cargo.toml │ └── src │ │ ├── byteorder.rs │ │ └── lib.rs └── zerocopy-derive-0.2.0 │ ├── .cargo-checksum.json │ ├── Cargo.toml │ └── src │ ├── ext.rs │ ├── lib.rs │ └── repr.rs ├── tools ├── .cargo │ └── config ├── Build.mk ├── Cargo.toml ├── Makefile ├── print_memory_usage.py ├── rust-toolchain ├── size_diff │ ├── Cargo.toml │ └── src │ │ └── main.rs └── size_graph │ ├── Cargo.toml │ └── src │ ├── lib.rs │ └── objdump.rs └── userspace ├── .cargo └── config ├── .gitignore ├── Build.mk ├── CAppMakefile.mk ├── Cargo.toml ├── Makefile ├── aes_test ├── Build.mk ├── Makefile ├── TockMakefile └── main.c ├── blink ├── Build.mk ├── Makefile ├── TockMakefile └── main.c ├── dcrypto_test ├── Build.mk ├── Makefile ├── TockMakefile ├── dcrypto.c ├── dcrypto.h └── main.c ├── flash_test ├── Build.mk ├── Cargo.toml ├── Makefile └── src │ ├── driver.rs │ ├── fake.rs │ ├── h1_hw.rs │ ├── lib.rs │ ├── mock_alarm.rs │ └── smart_program.rs ├── gpio_test ├── Build.mk ├── Makefile ├── TockMakefile └── main.c ├── layout.ld ├── layout_a.ld ├── layout_b.ld ├── libh1 ├── Makefile ├── README.md ├── dcrypto_syscalls.c ├── dcrypto_syscalls.h ├── digest_syscalls.c ├── digest_syscalls.h ├── drbg.h ├── fips_err.h ├── h1_aes_syscalls.c ├── h1_aes_syscalls.h ├── nvcounter_syscalls.c ├── nvcounter_syscalls.h ├── p256.h ├── personality_syscalls.c ├── personality_syscalls.h └── storage.h ├── low_level_debug ├── Build.mk ├── Cargo.toml ├── Makefile └── src │ └── main.rs ├── nvcounter_ctest ├── Build.mk ├── Makefile ├── TockMakefile └── main.c ├── nvcounter_test ├── Build.mk ├── Cargo.toml ├── Makefile └── src │ ├── capsule.rs │ ├── fake_flash.rs │ ├── internal.rs │ └── lib.rs ├── otpilot ├── Build.mk ├── Cargo.toml ├── Makefile └── src │ ├── alarm.rs │ ├── console_processor.rs │ ├── console_reader.rs │ ├── firmware_controller.rs │ ├── flash.rs │ ├── fuse.rs │ ├── globalsec.rs │ ├── gpio.rs │ ├── gpio_control.rs │ ├── gpio_processor.rs │ ├── main.rs │ ├── manticore_support.rs │ ├── reset.rs │ ├── sfdp.rs │ ├── spi_device.rs │ ├── spi_host.rs │ ├── spi_host_h1.rs │ ├── spi_host_helper.rs │ └── spi_processor.rs ├── personality_clear ├── Build.mk ├── Makefile ├── TockMakefile ├── asn1.c ├── cmac.c ├── drbg.c ├── fips.c ├── fips_crypto_tests.c ├── fips_entropy.c ├── fips_health_tests.c ├── include │ ├── asn1.h │ ├── cmac.h │ ├── fips.h │ ├── fips_aes.h │ ├── fips_crypto_tests.h │ ├── fips_entropy.h │ ├── fips_health_tests.h │ ├── kl.h │ ├── p256_ecdsa.h │ ├── trng.h │ ├── u2f.h │ ├── u2f_corp.h │ ├── u2f_hid.h │ ├── u2f_hid_corp.h │ └── x509.h ├── main.c ├── p256.c ├── p256_ecdsa.c ├── tock_shims.c ├── trng.c ├── u2f_syscalls.c ├── u2f_syscalls.h └── x509.c ├── personality_test ├── Build.mk ├── Makefile ├── TockMakefile ├── asn1.c ├── cmac.c ├── drbg.c ├── fips.c ├── fips_crypto_tests.c ├── fips_entropy.c ├── fips_health_tests.c ├── include │ ├── asn1.h │ ├── cmac.h │ ├── fips.h │ ├── fips_aes.h │ ├── fips_crypto_tests.h │ ├── fips_entropy.h │ ├── fips_health_tests.h │ ├── kl.h │ ├── p256_ecdsa.h │ ├── trng.h │ ├── u2f.h │ ├── u2f_corp.h │ ├── u2f_hid.h │ ├── u2f_hid_corp.h │ └── x509.h ├── main.c ├── p256.c ├── p256_ecdsa.c ├── tock_shims.c ├── trng.c ├── u2f_syscalls.c ├── u2f_syscalls.h └── x509.c ├── rng ├── Build.mk ├── Makefile ├── TockMakefile └── main.c ├── rust-toolchain ├── sha_test ├── Build.mk ├── Makefile ├── TockMakefile └── main.c ├── spin ├── Build.mk ├── Makefile ├── README ├── TockMakefile └── main.c ├── test_harness ├── Cargo.toml └── src │ ├── assertions.rs │ ├── compiler_required.rs │ └── lib.rs ├── u2f_app ├── Build.mk ├── Makefile ├── TockMakefile ├── asn1.c ├── cmac.c ├── drbg.c ├── fips.c ├── fips_crypto_tests.c ├── fips_entropy.c ├── fips_health_tests.c ├── include │ ├── asn1.h │ ├── cmac.h │ ├── fips.h │ ├── fips_aes.h │ ├── fips_crypto_tests.h │ ├── fips_entropy.h │ ├── fips_health_tests.h │ ├── hid_dfu.h │ ├── kl.h │ ├── p256_ecdsa.h │ ├── trng.h │ ├── u2f.h │ ├── u2f_corp.h │ ├── u2f_hid.h │ ├── u2f_hid_corp.h │ ├── u2f_impl.h │ └── x509.h ├── main.c ├── p256.c ├── p256_ecdsa.c ├── tock_shims.c ├── trng.c ├── u2f.c ├── u2f_syscalls.c ├── u2f_syscalls.h ├── u2f_transport.c └── x509.c └── u2f_test ├── Build.mk ├── Makefile ├── README.md ├── TockMakefile ├── main.c ├── u2f.c └── u2f.h /.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/.cargo/config -------------------------------------------------------------------------------- /.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/.gcloudignore -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DirShim.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/DirShim.mk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/README.md -------------------------------------------------------------------------------- /cargo-registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/cargo-registry/README.md -------------------------------------------------------------------------------- /cargo-registry/ansi_term: -------------------------------------------------------------------------------- 1 | ../third_party/ansi_term/ -------------------------------------------------------------------------------- /cargo-registry/arrayvec-0.5.1: -------------------------------------------------------------------------------- 1 | ../third_party/arrayvec-0.5.1/ -------------------------------------------------------------------------------- /cargo-registry/atty: -------------------------------------------------------------------------------- 1 | ../third_party/atty/ -------------------------------------------------------------------------------- /cargo-registry/bitflags-1.2.1: -------------------------------------------------------------------------------- 1 | ../third_party/bitflags-1.2.1/ -------------------------------------------------------------------------------- /cargo-registry/byteorder-1.3.4: -------------------------------------------------------------------------------- 1 | ../third_party/byteorder-1.3.4/ -------------------------------------------------------------------------------- /cargo-registry/cfg-if: -------------------------------------------------------------------------------- 1 | ../third_party/cfg-if/ -------------------------------------------------------------------------------- /cargo-registry/chrono: -------------------------------------------------------------------------------- 1 | ../third_party/chrono/ -------------------------------------------------------------------------------- /cargo-registry/clap: -------------------------------------------------------------------------------- 1 | ../third_party/clap/ -------------------------------------------------------------------------------- /cargo-registry/corepack: -------------------------------------------------------------------------------- 1 | ../third_party/corepack/ -------------------------------------------------------------------------------- /cargo-registry/elf: -------------------------------------------------------------------------------- 1 | ../third_party/elf -------------------------------------------------------------------------------- /cargo-registry/filetime: -------------------------------------------------------------------------------- 1 | ../third_party/filetime/ -------------------------------------------------------------------------------- /cargo-registry/futures: -------------------------------------------------------------------------------- 1 | ../third_party/futures -------------------------------------------------------------------------------- /cargo-registry/futures-channel: -------------------------------------------------------------------------------- 1 | ../third_party/futures-channel -------------------------------------------------------------------------------- /cargo-registry/futures-core: -------------------------------------------------------------------------------- 1 | ../third_party/futures-core -------------------------------------------------------------------------------- /cargo-registry/futures-io: -------------------------------------------------------------------------------- 1 | ../third_party/futures-io/ -------------------------------------------------------------------------------- /cargo-registry/futures-sink: -------------------------------------------------------------------------------- 1 | ../third_party/futures-sink -------------------------------------------------------------------------------- /cargo-registry/futures-task: -------------------------------------------------------------------------------- 1 | ../third_party/futures-task -------------------------------------------------------------------------------- /cargo-registry/futures-util: -------------------------------------------------------------------------------- 1 | ../third_party/futures-util -------------------------------------------------------------------------------- /cargo-registry/libc: -------------------------------------------------------------------------------- 1 | ../third_party/libc -------------------------------------------------------------------------------- /cargo-registry/linked-list-allocator: -------------------------------------------------------------------------------- 1 | ../third_party/linked-list-allocator/ -------------------------------------------------------------------------------- /cargo-registry/num-integer: -------------------------------------------------------------------------------- 1 | ../third_party/num-integer/ -------------------------------------------------------------------------------- /cargo-registry/num-traits: -------------------------------------------------------------------------------- 1 | ../third_party/num-traits/ -------------------------------------------------------------------------------- /cargo-registry/pin-utils: -------------------------------------------------------------------------------- 1 | ../third_party/pin-utils/ -------------------------------------------------------------------------------- /cargo-registry/proc-macro2-1.0.6: -------------------------------------------------------------------------------- 1 | ../third_party/proc-macro2-1.0.6/ -------------------------------------------------------------------------------- /cargo-registry/quote: -------------------------------------------------------------------------------- 1 | ../third_party/quote/ -------------------------------------------------------------------------------- /cargo-registry/quote-1.0.2: -------------------------------------------------------------------------------- 1 | ../third_party/quote-1.0.2/ -------------------------------------------------------------------------------- /cargo-registry/serde: -------------------------------------------------------------------------------- 1 | ../third_party/serde -------------------------------------------------------------------------------- /cargo-registry/serde_derive: -------------------------------------------------------------------------------- 1 | ../third_party/serde_derive/ -------------------------------------------------------------------------------- /cargo-registry/spin: -------------------------------------------------------------------------------- 1 | ../third_party/spin -------------------------------------------------------------------------------- /cargo-registry/static_assertions-1.1.0: -------------------------------------------------------------------------------- 1 | ../third_party/static_assertions-1.1.0/ -------------------------------------------------------------------------------- /cargo-registry/strsim: -------------------------------------------------------------------------------- 1 | ../third_party/strsim/ -------------------------------------------------------------------------------- /cargo-registry/structopt: -------------------------------------------------------------------------------- 1 | ../third_party/structopt/ -------------------------------------------------------------------------------- /cargo-registry/structopt-derive: -------------------------------------------------------------------------------- 1 | ../third_party/structopt-derive/ -------------------------------------------------------------------------------- /cargo-registry/syn: -------------------------------------------------------------------------------- 1 | ../third_party/syn/ -------------------------------------------------------------------------------- /cargo-registry/syn-1.0.11: -------------------------------------------------------------------------------- 1 | ../third_party/syn-1.0.11/ -------------------------------------------------------------------------------- /cargo-registry/synstructure-0.12.4: -------------------------------------------------------------------------------- 1 | ../third_party/synstructure-0.12.4 -------------------------------------------------------------------------------- /cargo-registry/tar: -------------------------------------------------------------------------------- 1 | ../third_party/tar/ -------------------------------------------------------------------------------- /cargo-registry/termion: -------------------------------------------------------------------------------- 1 | ../third_party/termion/ -------------------------------------------------------------------------------- /cargo-registry/textwrap: -------------------------------------------------------------------------------- 1 | ../third_party/textwrap/ -------------------------------------------------------------------------------- /cargo-registry/time: -------------------------------------------------------------------------------- 1 | ../third_party/time -------------------------------------------------------------------------------- /cargo-registry/unicode-width: -------------------------------------------------------------------------------- 1 | ../third_party/unicode-width/ -------------------------------------------------------------------------------- /cargo-registry/unicode-xid-0.2.0: -------------------------------------------------------------------------------- 1 | ../third_party/unicode-xid-0.2.0/ -------------------------------------------------------------------------------- /cargo-registry/ux-0.1.3: -------------------------------------------------------------------------------- 1 | ../third_party/ux-0.1.3/ -------------------------------------------------------------------------------- /cargo-registry/vec_map: -------------------------------------------------------------------------------- 1 | ../third_party/vec_map/ -------------------------------------------------------------------------------- /cargo-registry/xattr: -------------------------------------------------------------------------------- 1 | ../third_party/xattr/ -------------------------------------------------------------------------------- /cargo-registry/zerocopy-0.3.0: -------------------------------------------------------------------------------- 1 | ../third_party/zerocopy-0.3.0/ -------------------------------------------------------------------------------- /cargo-registry/zerocopy-derive-0.2.0: -------------------------------------------------------------------------------- 1 | ../third_party/zerocopy-derive-0.2.0/ -------------------------------------------------------------------------------- /doc/build_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/doc/build_system.md -------------------------------------------------------------------------------- /doc/gcb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/doc/gcb.md -------------------------------------------------------------------------------- /doc/make_targets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/doc/make_targets.md -------------------------------------------------------------------------------- /doc/nvcounter_syscalls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/doc/nvcounter_syscalls.md -------------------------------------------------------------------------------- /gcb/Dockerfile.tock-toolchain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/gcb/Dockerfile.tock-toolchain -------------------------------------------------------------------------------- /gcb/tock-toolchain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/gcb/tock-toolchain.yaml -------------------------------------------------------------------------------- /kernel/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/.cargo/config -------------------------------------------------------------------------------- /kernel/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/Build.mk -------------------------------------------------------------------------------- /kernel/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/Cargo.toml -------------------------------------------------------------------------------- /kernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/Makefile -------------------------------------------------------------------------------- /kernel/chip_layout.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/chip_layout.ld -------------------------------------------------------------------------------- /kernel/chip_layout_a.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/chip_layout_a.ld -------------------------------------------------------------------------------- /kernel/chip_layout_b.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/chip_layout_b.ld -------------------------------------------------------------------------------- /kernel/golf2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/golf2/.gitignore -------------------------------------------------------------------------------- /kernel/golf2/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/golf2/Cargo.toml -------------------------------------------------------------------------------- /kernel/golf2/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/golf2/Xargo.toml -------------------------------------------------------------------------------- /kernel/golf2/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/golf2/build.rs -------------------------------------------------------------------------------- /kernel/golf2/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/golf2/src/main.rs -------------------------------------------------------------------------------- /kernel/h1/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/Cargo.toml -------------------------------------------------------------------------------- /kernel/h1/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/build.rs -------------------------------------------------------------------------------- /kernel/h1/layout.ld: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kernel/h1/src/chip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/chip.rs -------------------------------------------------------------------------------- /kernel/h1/src/crypto/aes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/crypto/aes.rs -------------------------------------------------------------------------------- /kernel/h1/src/crypto/dcrypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/crypto/dcrypto.rs -------------------------------------------------------------------------------- /kernel/h1/src/crypto/keymgr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/crypto/keymgr.rs -------------------------------------------------------------------------------- /kernel/h1/src/crypto/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/crypto/mod.rs -------------------------------------------------------------------------------- /kernel/h1/src/crypto/sha.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/crypto/sha.rs -------------------------------------------------------------------------------- /kernel/h1/src/fuse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/fuse.rs -------------------------------------------------------------------------------- /kernel/h1/src/globalsec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/globalsec.rs -------------------------------------------------------------------------------- /kernel/h1/src/gpio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/gpio.rs -------------------------------------------------------------------------------- /kernel/h1/src/hil/aes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/hil/aes.rs -------------------------------------------------------------------------------- /kernel/h1/src/hil/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/hil/common.rs -------------------------------------------------------------------------------- /kernel/h1/src/hil/digest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/hil/digest.rs -------------------------------------------------------------------------------- /kernel/h1/src/hil/flash/driver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/hil/flash/driver.rs -------------------------------------------------------------------------------- /kernel/h1/src/hil/flash/fake.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/hil/flash/fake.rs -------------------------------------------------------------------------------- /kernel/h1/src/hil/flash/flash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/hil/flash/flash.rs -------------------------------------------------------------------------------- /kernel/h1/src/hil/flash/flash_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/hil/flash/flash_test.rs -------------------------------------------------------------------------------- /kernel/h1/src/hil/flash/h1_hw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/hil/flash/h1_hw.rs -------------------------------------------------------------------------------- /kernel/h1/src/hil/flash/hardware.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/hil/flash/hardware.rs -------------------------------------------------------------------------------- /kernel/h1/src/hil/flash/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/hil/flash/mod.rs -------------------------------------------------------------------------------- /kernel/h1/src/hil/flash/smart_program.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/hil/flash/smart_program.rs -------------------------------------------------------------------------------- /kernel/h1/src/hil/flash/virtual_flash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/hil/flash/virtual_flash.rs -------------------------------------------------------------------------------- /kernel/h1/src/hil/fuse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/hil/fuse.rs -------------------------------------------------------------------------------- /kernel/h1/src/hil/globalsec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/hil/globalsec.rs -------------------------------------------------------------------------------- /kernel/h1/src/hil/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/hil/mod.rs -------------------------------------------------------------------------------- /kernel/h1/src/hil/personality.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/hil/personality.rs -------------------------------------------------------------------------------- /kernel/h1/src/hil/reset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/hil/reset.rs -------------------------------------------------------------------------------- /kernel/h1/src/hil/rng.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/hil/rng.rs -------------------------------------------------------------------------------- /kernel/h1/src/hil/spi_device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/hil/spi_device.rs -------------------------------------------------------------------------------- /kernel/h1/src/hil/spi_host.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/hil/spi_host.rs -------------------------------------------------------------------------------- /kernel/h1/src/io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/io.rs -------------------------------------------------------------------------------- /kernel/h1/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/lib.rs -------------------------------------------------------------------------------- /kernel/h1/src/nvcounter/capsule.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/nvcounter/capsule.rs -------------------------------------------------------------------------------- /kernel/h1/src/nvcounter/internal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/nvcounter/internal.rs -------------------------------------------------------------------------------- /kernel/h1/src/nvcounter/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/nvcounter/mod.rs -------------------------------------------------------------------------------- /kernel/h1/src/nvcounter/nvcounter_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/nvcounter/nvcounter_test.rs -------------------------------------------------------------------------------- /kernel/h1/src/nvcounter/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/nvcounter/traits.rs -------------------------------------------------------------------------------- /kernel/h1/src/personality.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/personality.rs -------------------------------------------------------------------------------- /kernel/h1/src/pinmux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/pinmux.rs -------------------------------------------------------------------------------- /kernel/h1/src/pmu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/pmu.rs -------------------------------------------------------------------------------- /kernel/h1/src/rng_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/rng_test.rs -------------------------------------------------------------------------------- /kernel/h1/src/spi_device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/spi_device.rs -------------------------------------------------------------------------------- /kernel/h1/src/spi_host.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/spi_host.rs -------------------------------------------------------------------------------- /kernel/h1/src/test_dcrypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/test_dcrypto.rs -------------------------------------------------------------------------------- /kernel/h1/src/test_rng.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/test_rng.rs -------------------------------------------------------------------------------- /kernel/h1/src/timels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/timels.rs -------------------------------------------------------------------------------- /kernel/h1/src/timeus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/timeus.rs -------------------------------------------------------------------------------- /kernel/h1/src/trng.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/trng.rs -------------------------------------------------------------------------------- /kernel/h1/src/uart.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/uart.rs -------------------------------------------------------------------------------- /kernel/h1/src/usb/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/usb/constants.rs -------------------------------------------------------------------------------- /kernel/h1/src/usb/driver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/usb/driver.rs -------------------------------------------------------------------------------- /kernel/h1/src/usb/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/usb/mod.rs -------------------------------------------------------------------------------- /kernel/h1/src/usb/registers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/usb/registers.rs -------------------------------------------------------------------------------- /kernel/h1/src/usb/serialize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/usb/serialize.rs -------------------------------------------------------------------------------- /kernel/h1/src/usb/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/usb/types.rs -------------------------------------------------------------------------------- /kernel/h1/src/usb/u2f.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1/src/usb/u2f.rs -------------------------------------------------------------------------------- /kernel/h1_syscalls/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1_syscalls/Cargo.toml -------------------------------------------------------------------------------- /kernel/h1_syscalls/src/aes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1_syscalls/src/aes.rs -------------------------------------------------------------------------------- /kernel/h1_syscalls/src/dcrypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1_syscalls/src/dcrypto.rs -------------------------------------------------------------------------------- /kernel/h1_syscalls/src/dcrypto_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1_syscalls/src/dcrypto_test.rs -------------------------------------------------------------------------------- /kernel/h1_syscalls/src/digest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1_syscalls/src/digest.rs -------------------------------------------------------------------------------- /kernel/h1_syscalls/src/flash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1_syscalls/src/flash.rs -------------------------------------------------------------------------------- /kernel/h1_syscalls/src/fuse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1_syscalls/src/fuse.rs -------------------------------------------------------------------------------- /kernel/h1_syscalls/src/globalsec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1_syscalls/src/globalsec.rs -------------------------------------------------------------------------------- /kernel/h1_syscalls/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1_syscalls/src/lib.rs -------------------------------------------------------------------------------- /kernel/h1_syscalls/src/personality.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1_syscalls/src/personality.rs -------------------------------------------------------------------------------- /kernel/h1_syscalls/src/reset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1_syscalls/src/reset.rs -------------------------------------------------------------------------------- /kernel/h1_syscalls/src/spi_device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1_syscalls/src/spi_device.rs -------------------------------------------------------------------------------- /kernel/h1_syscalls/src/spi_host.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/h1_syscalls/src/spi_host.rs -------------------------------------------------------------------------------- /kernel/kernel_layout.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/kernel_layout.ld -------------------------------------------------------------------------------- /kernel/layout.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/layout.ld -------------------------------------------------------------------------------- /kernel/layout_a.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/layout_a.ld -------------------------------------------------------------------------------- /kernel/layout_b.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/layout_b.ld -------------------------------------------------------------------------------- /kernel/papa/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/papa/.gitignore -------------------------------------------------------------------------------- /kernel/papa/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/papa/Cargo.toml -------------------------------------------------------------------------------- /kernel/papa/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/papa/build.rs -------------------------------------------------------------------------------- /kernel/papa/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/kernel/papa/src/main.rs -------------------------------------------------------------------------------- /kernel/rust-toolchain: -------------------------------------------------------------------------------- 1 | ../third_party/tock/rust-toolchain -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /runner/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/runner/Build.mk -------------------------------------------------------------------------------- /runner/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/runner/Cargo.toml -------------------------------------------------------------------------------- /runner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/runner/Makefile -------------------------------------------------------------------------------- /runner/rust-toolchain: -------------------------------------------------------------------------------- 1 | ../third_party/elf2tab/rust-toolchain -------------------------------------------------------------------------------- /runner/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/runner/src/main.rs -------------------------------------------------------------------------------- /shared-lib/spiutils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/shared-lib/spiutils/Cargo.toml -------------------------------------------------------------------------------- /shared-lib/spiutils/src/compat/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/shared-lib/spiutils/src/compat/mod.rs -------------------------------------------------------------------------------- /shared-lib/spiutils/src/driver/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/shared-lib/spiutils/src/driver/mod.rs -------------------------------------------------------------------------------- /shared-lib/spiutils/src/driver/reset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/shared-lib/spiutils/src/driver/reset.rs -------------------------------------------------------------------------------- /shared-lib/spiutils/src/io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/shared-lib/spiutils/src/io.rs -------------------------------------------------------------------------------- /shared-lib/spiutils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/shared-lib/spiutils/src/lib.rs -------------------------------------------------------------------------------- /shared-lib/spiutils/src/protocol/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/shared-lib/spiutils/src/protocol/error.rs -------------------------------------------------------------------------------- /shared-lib/spiutils/src/protocol/flash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/shared-lib/spiutils/src/protocol/flash.rs -------------------------------------------------------------------------------- /shared-lib/spiutils/src/protocol/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/shared-lib/spiutils/src/protocol/mod.rs -------------------------------------------------------------------------------- /shared-lib/spiutils/src/protocol/wire.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/shared-lib/spiutils/src/protocol/wire.rs -------------------------------------------------------------------------------- /shared-lib/spiutils/tool/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/shared-lib/spiutils/tool/Cargo.toml -------------------------------------------------------------------------------- /shared-lib/spiutils/tool/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/shared-lib/spiutils/tool/src/main.rs -------------------------------------------------------------------------------- /third_party/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/Build.mk -------------------------------------------------------------------------------- /third_party/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/Makefile -------------------------------------------------------------------------------- /third_party/ansi_term/.cargo-checksum.json: -------------------------------------------------------------------------------- 1 | {"files":{}} 2 | -------------------------------------------------------------------------------- /third_party/ansi_term/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/ansi_term/Cargo.toml -------------------------------------------------------------------------------- /third_party/ansi_term/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/ansi_term/LICENCE -------------------------------------------------------------------------------- /third_party/ansi_term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/ansi_term/README.md -------------------------------------------------------------------------------- /third_party/ansi_term/examples/colours.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/ansi_term/examples/colours.rs -------------------------------------------------------------------------------- /third_party/ansi_term/src/ansi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/ansi_term/src/ansi.rs -------------------------------------------------------------------------------- /third_party/ansi_term/src/debug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/ansi_term/src/debug.rs -------------------------------------------------------------------------------- /third_party/ansi_term/src/difference.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/ansi_term/src/difference.rs -------------------------------------------------------------------------------- /third_party/ansi_term/src/display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/ansi_term/src/display.rs -------------------------------------------------------------------------------- /third_party/ansi_term/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/ansi_term/src/lib.rs -------------------------------------------------------------------------------- /third_party/ansi_term/src/style.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/ansi_term/src/style.rs -------------------------------------------------------------------------------- /third_party/ansi_term/src/windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/ansi_term/src/windows.rs -------------------------------------------------------------------------------- /third_party/ansi_term/src/write.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/ansi_term/src/write.rs -------------------------------------------------------------------------------- /third_party/arrayvec-0.5.1/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/arrayvec-0.5.1/Cargo.toml -------------------------------------------------------------------------------- /third_party/arrayvec-0.5.1/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/arrayvec-0.5.1/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/arrayvec-0.5.1/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/arrayvec-0.5.1/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/arrayvec-0.5.1/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/arrayvec-0.5.1/README.rst -------------------------------------------------------------------------------- /third_party/arrayvec-0.5.1/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/arrayvec-0.5.1/custom.css -------------------------------------------------------------------------------- /third_party/arrayvec-0.5.1/src/array.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/arrayvec-0.5.1/src/array.rs -------------------------------------------------------------------------------- /third_party/arrayvec-0.5.1/src/char.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/arrayvec-0.5.1/src/char.rs -------------------------------------------------------------------------------- /third_party/arrayvec-0.5.1/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/arrayvec-0.5.1/src/errors.rs -------------------------------------------------------------------------------- /third_party/arrayvec-0.5.1/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/arrayvec-0.5.1/src/lib.rs -------------------------------------------------------------------------------- /third_party/arrayvec-0.5.1/tests/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/arrayvec-0.5.1/tests/serde.rs -------------------------------------------------------------------------------- /third_party/arrayvec-0.5.1/tests/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/arrayvec-0.5.1/tests/tests.rs -------------------------------------------------------------------------------- /third_party/atty/.cargo-checksum.json: -------------------------------------------------------------------------------- 1 | {"files":{}} 2 | -------------------------------------------------------------------------------- /third_party/atty/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/atty/CHANGELOG.md -------------------------------------------------------------------------------- /third_party/atty/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/atty/Cargo.toml -------------------------------------------------------------------------------- /third_party/atty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/atty/LICENSE -------------------------------------------------------------------------------- /third_party/atty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/atty/README.md -------------------------------------------------------------------------------- /third_party/atty/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/atty/appveyor.yml -------------------------------------------------------------------------------- /third_party/atty/examples/atty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/atty/examples/atty.rs -------------------------------------------------------------------------------- /third_party/atty/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/atty/rustfmt.toml -------------------------------------------------------------------------------- /third_party/atty/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/atty/src/lib.rs -------------------------------------------------------------------------------- /third_party/bitflags-1.2.1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/bitflags-1.2.1/CHANGELOG.md -------------------------------------------------------------------------------- /third_party/bitflags-1.2.1/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/bitflags-1.2.1/Cargo.toml -------------------------------------------------------------------------------- /third_party/bitflags-1.2.1/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/bitflags-1.2.1/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/bitflags-1.2.1/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/bitflags-1.2.1/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/bitflags-1.2.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/bitflags-1.2.1/README.md -------------------------------------------------------------------------------- /third_party/bitflags-1.2.1/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/bitflags-1.2.1/build.rs -------------------------------------------------------------------------------- /third_party/bitflags-1.2.1/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/bitflags-1.2.1/src/lib.rs -------------------------------------------------------------------------------- /third_party/byteorder-1.3.4/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/byteorder-1.3.4/CHANGELOG.md -------------------------------------------------------------------------------- /third_party/byteorder-1.3.4/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/byteorder-1.3.4/COPYING -------------------------------------------------------------------------------- /third_party/byteorder-1.3.4/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/byteorder-1.3.4/Cargo.toml -------------------------------------------------------------------------------- /third_party/byteorder-1.3.4/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/byteorder-1.3.4/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/byteorder-1.3.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/byteorder-1.3.4/README.md -------------------------------------------------------------------------------- /third_party/byteorder-1.3.4/UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/byteorder-1.3.4/UNLICENSE -------------------------------------------------------------------------------- /third_party/byteorder-1.3.4/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/byteorder-1.3.4/build.rs -------------------------------------------------------------------------------- /third_party/byteorder-1.3.4/src/io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/byteorder-1.3.4/src/io.rs -------------------------------------------------------------------------------- /third_party/byteorder-1.3.4/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/byteorder-1.3.4/src/lib.rs -------------------------------------------------------------------------------- /third_party/cfg-if/.cargo-checksum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/cfg-if/.cargo-checksum.json -------------------------------------------------------------------------------- /third_party/cfg-if/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/cfg-if/Cargo.toml -------------------------------------------------------------------------------- /third_party/cfg-if/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/cfg-if/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/cfg-if/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/cfg-if/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/cfg-if/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/cfg-if/README.md -------------------------------------------------------------------------------- /third_party/cfg-if/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/cfg-if/src/lib.rs -------------------------------------------------------------------------------- /third_party/cfg-if/tests/xcrate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/cfg-if/tests/xcrate.rs -------------------------------------------------------------------------------- /third_party/chromiumos-ec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chromiumos-ec/Makefile -------------------------------------------------------------------------------- /third_party/chromiumos-ec/include/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chromiumos-ec/include/LICENSE -------------------------------------------------------------------------------- /third_party/chromiumos-ec/include/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chromiumos-ec/include/timer.h -------------------------------------------------------------------------------- /third_party/chromiumos-ec/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chromiumos-ec/sha256.c -------------------------------------------------------------------------------- /third_party/chrono/.cargo-checksum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/.cargo-checksum.json -------------------------------------------------------------------------------- /third_party/chrono/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/AUTHORS.txt -------------------------------------------------------------------------------- /third_party/chrono/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/CHANGELOG.md -------------------------------------------------------------------------------- /third_party/chrono/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/Cargo.toml -------------------------------------------------------------------------------- /third_party/chrono/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/LICENSE.txt -------------------------------------------------------------------------------- /third_party/chrono/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/Makefile -------------------------------------------------------------------------------- /third_party/chrono/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/README.md -------------------------------------------------------------------------------- /third_party/chrono/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/appveyor.yml -------------------------------------------------------------------------------- /third_party/chrono/src/date.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/src/date.rs -------------------------------------------------------------------------------- /third_party/chrono/src/datetime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/src/datetime.rs -------------------------------------------------------------------------------- /third_party/chrono/src/div.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/src/div.rs -------------------------------------------------------------------------------- /third_party/chrono/src/format/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/src/format/mod.rs -------------------------------------------------------------------------------- /third_party/chrono/src/format/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/src/format/parse.rs -------------------------------------------------------------------------------- /third_party/chrono/src/format/parsed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/src/format/parsed.rs -------------------------------------------------------------------------------- /third_party/chrono/src/format/scan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/src/format/scan.rs -------------------------------------------------------------------------------- /third_party/chrono/src/format/strftime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/src/format/strftime.rs -------------------------------------------------------------------------------- /third_party/chrono/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/src/lib.rs -------------------------------------------------------------------------------- /third_party/chrono/src/naive/date.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/src/naive/date.rs -------------------------------------------------------------------------------- /third_party/chrono/src/naive/datetime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/src/naive/datetime.rs -------------------------------------------------------------------------------- /third_party/chrono/src/naive/internals.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/src/naive/internals.rs -------------------------------------------------------------------------------- /third_party/chrono/src/naive/isoweek.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/src/naive/isoweek.rs -------------------------------------------------------------------------------- /third_party/chrono/src/naive/time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/src/naive/time.rs -------------------------------------------------------------------------------- /third_party/chrono/src/offset/fixed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/src/offset/fixed.rs -------------------------------------------------------------------------------- /third_party/chrono/src/offset/local.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/src/offset/local.rs -------------------------------------------------------------------------------- /third_party/chrono/src/offset/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/src/offset/mod.rs -------------------------------------------------------------------------------- /third_party/chrono/src/offset/utc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/src/offset/utc.rs -------------------------------------------------------------------------------- /third_party/chrono/src/oldtime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/src/oldtime.rs -------------------------------------------------------------------------------- /third_party/chrono/src/round.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/chrono/src/round.rs -------------------------------------------------------------------------------- /third_party/clap/.cargo-checksum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/.cargo-checksum.json -------------------------------------------------------------------------------- /third_party/clap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/CHANGELOG.md -------------------------------------------------------------------------------- /third_party/clap/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/CONTRIBUTORS.md -------------------------------------------------------------------------------- /third_party/clap/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/Cargo.toml -------------------------------------------------------------------------------- /third_party/clap/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/clap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/README.md -------------------------------------------------------------------------------- /third_party/clap/SPONSORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/SPONSORS.md -------------------------------------------------------------------------------- /third_party/clap/clap-test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/clap-test.rs -------------------------------------------------------------------------------- /third_party/clap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/index.html -------------------------------------------------------------------------------- /third_party/clap/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/justfile -------------------------------------------------------------------------------- /third_party/clap/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/rustfmt.toml -------------------------------------------------------------------------------- /third_party/clap/src/app/help.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/app/help.rs -------------------------------------------------------------------------------- /third_party/clap/src/app/meta.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/app/meta.rs -------------------------------------------------------------------------------- /third_party/clap/src/app/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/app/mod.rs -------------------------------------------------------------------------------- /third_party/clap/src/app/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/app/parser.rs -------------------------------------------------------------------------------- /third_party/clap/src/app/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/app/settings.rs -------------------------------------------------------------------------------- /third_party/clap/src/app/usage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/app/usage.rs -------------------------------------------------------------------------------- /third_party/clap/src/app/validator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/app/validator.rs -------------------------------------------------------------------------------- /third_party/clap/src/args/any_arg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/args/any_arg.rs -------------------------------------------------------------------------------- /third_party/clap/src/args/arg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/args/arg.rs -------------------------------------------------------------------------------- /third_party/clap/src/args/arg_matcher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/args/arg_matcher.rs -------------------------------------------------------------------------------- /third_party/clap/src/args/arg_matches.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/args/arg_matches.rs -------------------------------------------------------------------------------- /third_party/clap/src/args/group.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/args/group.rs -------------------------------------------------------------------------------- /third_party/clap/src/args/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/args/macros.rs -------------------------------------------------------------------------------- /third_party/clap/src/args/matched_arg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/args/matched_arg.rs -------------------------------------------------------------------------------- /third_party/clap/src/args/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/args/mod.rs -------------------------------------------------------------------------------- /third_party/clap/src/args/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/args/settings.rs -------------------------------------------------------------------------------- /third_party/clap/src/args/subcommand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/args/subcommand.rs -------------------------------------------------------------------------------- /third_party/clap/src/completions/bash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/completions/bash.rs -------------------------------------------------------------------------------- /third_party/clap/src/completions/fish.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/completions/fish.rs -------------------------------------------------------------------------------- /third_party/clap/src/completions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/completions/mod.rs -------------------------------------------------------------------------------- /third_party/clap/src/completions/shell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/completions/shell.rs -------------------------------------------------------------------------------- /third_party/clap/src/completions/zsh.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/completions/zsh.rs -------------------------------------------------------------------------------- /third_party/clap/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/errors.rs -------------------------------------------------------------------------------- /third_party/clap/src/fmt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/fmt.rs -------------------------------------------------------------------------------- /third_party/clap/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/lib.rs -------------------------------------------------------------------------------- /third_party/clap/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/macros.rs -------------------------------------------------------------------------------- /third_party/clap/src/map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/map.rs -------------------------------------------------------------------------------- /third_party/clap/src/osstringext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/osstringext.rs -------------------------------------------------------------------------------- /third_party/clap/src/strext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/strext.rs -------------------------------------------------------------------------------- /third_party/clap/src/suggestions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/suggestions.rs -------------------------------------------------------------------------------- /third_party/clap/src/usage_parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/clap/src/usage_parser.rs -------------------------------------------------------------------------------- /third_party/corepack/.cargo-checksum.json: -------------------------------------------------------------------------------- 1 | {"files":{}} 2 | -------------------------------------------------------------------------------- /third_party/corepack/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/corepack/Cargo.toml -------------------------------------------------------------------------------- /third_party/corepack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/corepack/LICENSE -------------------------------------------------------------------------------- /third_party/corepack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/corepack/README.md -------------------------------------------------------------------------------- /third_party/corepack/src/de.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/corepack/src/de.rs -------------------------------------------------------------------------------- /third_party/corepack/src/defs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/corepack/src/defs.rs -------------------------------------------------------------------------------- /third_party/corepack/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/corepack/src/error.rs -------------------------------------------------------------------------------- /third_party/corepack/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/corepack/src/lib.rs -------------------------------------------------------------------------------- /third_party/corepack/src/read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/corepack/src/read.rs -------------------------------------------------------------------------------- /third_party/corepack/src/ser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/corepack/src/ser.rs -------------------------------------------------------------------------------- /third_party/elf/.cargo-checksum.json: -------------------------------------------------------------------------------- 1 | {"files":{}} 2 | -------------------------------------------------------------------------------- /third_party/elf/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/elf/COPYRIGHT -------------------------------------------------------------------------------- /third_party/elf/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/elf/Cargo.toml -------------------------------------------------------------------------------- /third_party/elf/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/elf/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/elf/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/elf/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/elf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/elf/README.md -------------------------------------------------------------------------------- /third_party/elf/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/elf/src/lib.rs -------------------------------------------------------------------------------- /third_party/elf/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/elf/src/types.rs -------------------------------------------------------------------------------- /third_party/elf/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/elf/src/utils.rs -------------------------------------------------------------------------------- /third_party/filetime/.cargo-checksum.json: -------------------------------------------------------------------------------- 1 | {"files":{}} 2 | -------------------------------------------------------------------------------- /third_party/filetime/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/filetime/Cargo.toml -------------------------------------------------------------------------------- /third_party/filetime/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/filetime/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/filetime/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/filetime/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/filetime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/filetime/README.md -------------------------------------------------------------------------------- /third_party/filetime/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/filetime/appveyor.yml -------------------------------------------------------------------------------- /third_party/filetime/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/filetime/src/lib.rs -------------------------------------------------------------------------------- /third_party/filetime/src/redox.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/filetime/src/redox.rs -------------------------------------------------------------------------------- /third_party/filetime/src/unix/linux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/filetime/src/unix/linux.rs -------------------------------------------------------------------------------- /third_party/filetime/src/unix/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/filetime/src/unix/mod.rs -------------------------------------------------------------------------------- /third_party/filetime/src/unix/utimes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/filetime/src/unix/utimes.rs -------------------------------------------------------------------------------- /third_party/filetime/src/windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/filetime/src/windows.rs -------------------------------------------------------------------------------- /third_party/futures-channel/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-channel/Cargo.toml -------------------------------------------------------------------------------- /third_party/futures-channel/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-channel/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/futures-channel/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-channel/src/lib.rs -------------------------------------------------------------------------------- /third_party/futures-channel/src/lock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-channel/src/lock.rs -------------------------------------------------------------------------------- /third_party/futures-channel/tests/mpsc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-channel/tests/mpsc.rs -------------------------------------------------------------------------------- /third_party/futures-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-core/Cargo.toml -------------------------------------------------------------------------------- /third_party/futures-core/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-core/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/futures-core/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-core/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/futures-core/src/future.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-core/src/future.rs -------------------------------------------------------------------------------- /third_party/futures-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-core/src/lib.rs -------------------------------------------------------------------------------- /third_party/futures-core/src/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-core/src/stream.rs -------------------------------------------------------------------------------- /third_party/futures-core/src/task/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-core/src/task/mod.rs -------------------------------------------------------------------------------- /third_party/futures-core/src/task/poll.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-core/src/task/poll.rs -------------------------------------------------------------------------------- /third_party/futures-io/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-io/Cargo.toml -------------------------------------------------------------------------------- /third_party/futures-io/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-io/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/futures-io/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-io/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/futures-io/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-io/src/lib.rs -------------------------------------------------------------------------------- /third_party/futures-sink/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-sink/Cargo.toml -------------------------------------------------------------------------------- /third_party/futures-sink/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-sink/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/futures-sink/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-sink/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/futures-sink/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-sink/src/lib.rs -------------------------------------------------------------------------------- /third_party/futures-task/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-task/Cargo.toml -------------------------------------------------------------------------------- /third_party/futures-task/src/arc_wake.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-task/src/arc_wake.rs -------------------------------------------------------------------------------- /third_party/futures-task/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-task/src/lib.rs -------------------------------------------------------------------------------- /third_party/futures-task/src/spawn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-task/src/spawn.rs -------------------------------------------------------------------------------- /third_party/futures-task/src/waker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-task/src/waker.rs -------------------------------------------------------------------------------- /third_party/futures-task/src/waker_ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-task/src/waker_ref.rs -------------------------------------------------------------------------------- /third_party/futures-util/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-util/Cargo.toml -------------------------------------------------------------------------------- /third_party/futures-util/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-util/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/futures-util/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-util/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/futures-util/src/io/chain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-util/src/io/chain.rs -------------------------------------------------------------------------------- /third_party/futures-util/src/io/close.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-util/src/io/close.rs -------------------------------------------------------------------------------- /third_party/futures-util/src/io/copy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-util/src/io/copy.rs -------------------------------------------------------------------------------- /third_party/futures-util/src/io/cursor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-util/src/io/cursor.rs -------------------------------------------------------------------------------- /third_party/futures-util/src/io/empty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-util/src/io/empty.rs -------------------------------------------------------------------------------- /third_party/futures-util/src/io/flush.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-util/src/io/flush.rs -------------------------------------------------------------------------------- /third_party/futures-util/src/io/lines.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-util/src/io/lines.rs -------------------------------------------------------------------------------- /third_party/futures-util/src/io/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-util/src/io/mod.rs -------------------------------------------------------------------------------- /third_party/futures-util/src/io/read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-util/src/io/read.rs -------------------------------------------------------------------------------- /third_party/futures-util/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-util/src/lib.rs -------------------------------------------------------------------------------- /third_party/futures-util/src/never.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures-util/src/never.rs -------------------------------------------------------------------------------- /third_party/futures/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/Cargo.toml -------------------------------------------------------------------------------- /third_party/futures/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/futures/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/futures/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/src/lib.rs -------------------------------------------------------------------------------- /third_party/futures/tests/abortable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/tests/abortable.rs -------------------------------------------------------------------------------- /third_party/futures/tests/arc_wake.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/tests/arc_wake.rs -------------------------------------------------------------------------------- /third_party/futures/tests/compat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/tests/compat.rs -------------------------------------------------------------------------------- /third_party/futures/tests/eventual.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/tests/eventual.rs -------------------------------------------------------------------------------- /third_party/futures/tests/fuse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/tests/fuse.rs -------------------------------------------------------------------------------- /third_party/futures/tests/inspect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/tests/inspect.rs -------------------------------------------------------------------------------- /third_party/futures/tests/io_cursor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/tests/io_cursor.rs -------------------------------------------------------------------------------- /third_party/futures/tests/io_lines.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/tests/io_lines.rs -------------------------------------------------------------------------------- /third_party/futures/tests/io_window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/tests/io_window.rs -------------------------------------------------------------------------------- /third_party/futures/tests/join_all.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/tests/join_all.rs -------------------------------------------------------------------------------- /third_party/futures/tests/mutex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/tests/mutex.rs -------------------------------------------------------------------------------- /third_party/futures/tests/oneshot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/tests/oneshot.rs -------------------------------------------------------------------------------- /third_party/futures/tests/recurse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/tests/recurse.rs -------------------------------------------------------------------------------- /third_party/futures/tests/select_ok.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/tests/select_ok.rs -------------------------------------------------------------------------------- /third_party/futures/tests/shared.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/tests/shared.rs -------------------------------------------------------------------------------- /third_party/futures/tests/sink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/tests/sink.rs -------------------------------------------------------------------------------- /third_party/futures/tests/split.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/tests/split.rs -------------------------------------------------------------------------------- /third_party/futures/tests/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/tests/stream.rs -------------------------------------------------------------------------------- /third_party/futures/tests/unfold.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/futures/tests/unfold.rs -------------------------------------------------------------------------------- /third_party/libc/.cargo-checksum.json: -------------------------------------------------------------------------------- 1 | {"files":{}} 2 | -------------------------------------------------------------------------------- /third_party/libc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/libc/Cargo.toml -------------------------------------------------------------------------------- /third_party/libc/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/libc/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/libc/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/libc/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/libc/MODIFICATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/libc/MODIFICATIONS.md -------------------------------------------------------------------------------- /third_party/libc/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/libc/build.rs -------------------------------------------------------------------------------- /third_party/libc/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/libc/src/lib.rs -------------------------------------------------------------------------------- /third_party/libc/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/libc/src/macros.rs -------------------------------------------------------------------------------- /third_party/libc/src/unix/align.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/libc/src/unix/align.rs -------------------------------------------------------------------------------- /third_party/libc/src/unix/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/libc/src/unix/mod.rs -------------------------------------------------------------------------------- /third_party/libc/src/unix/no_align.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/libc/src/unix/no_align.rs -------------------------------------------------------------------------------- /third_party/linked-list-allocator/.cargo-checksum.json: -------------------------------------------------------------------------------- 1 | {"files":{}} 2 | -------------------------------------------------------------------------------- /third_party/num-integer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-integer/Cargo.toml -------------------------------------------------------------------------------- /third_party/num-integer/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-integer/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/num-integer/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-integer/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/num-integer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-integer/README.md -------------------------------------------------------------------------------- /third_party/num-integer/RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-integer/RELEASES.md -------------------------------------------------------------------------------- /third_party/num-integer/bors.toml: -------------------------------------------------------------------------------- 1 | status = [ 2 | "continuous-integration/travis-ci/push", 3 | ] 4 | -------------------------------------------------------------------------------- /third_party/num-integer/ci/rustup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-integer/ci/rustup.sh -------------------------------------------------------------------------------- /third_party/num-integer/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-integer/src/lib.rs -------------------------------------------------------------------------------- /third_party/num-traits/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-traits/Cargo.toml -------------------------------------------------------------------------------- /third_party/num-traits/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-traits/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/num-traits/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-traits/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/num-traits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-traits/README.md -------------------------------------------------------------------------------- /third_party/num-traits/RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-traits/RELEASES.md -------------------------------------------------------------------------------- /third_party/num-traits/bors.toml: -------------------------------------------------------------------------------- 1 | status = [ 2 | "continuous-integration/travis-ci/push", 3 | ] 4 | -------------------------------------------------------------------------------- /third_party/num-traits/ci/rustup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-traits/ci/rustup.sh -------------------------------------------------------------------------------- /third_party/num-traits/ci/test_full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-traits/ci/test_full.sh -------------------------------------------------------------------------------- /third_party/num-traits/src/bounds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-traits/src/bounds.rs -------------------------------------------------------------------------------- /third_party/num-traits/src/cast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-traits/src/cast.rs -------------------------------------------------------------------------------- /third_party/num-traits/src/float.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-traits/src/float.rs -------------------------------------------------------------------------------- /third_party/num-traits/src/int.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-traits/src/int.rs -------------------------------------------------------------------------------- /third_party/num-traits/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-traits/src/lib.rs -------------------------------------------------------------------------------- /third_party/num-traits/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-traits/src/macros.rs -------------------------------------------------------------------------------- /third_party/num-traits/src/ops/inv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-traits/src/ops/inv.rs -------------------------------------------------------------------------------- /third_party/num-traits/src/ops/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-traits/src/ops/mod.rs -------------------------------------------------------------------------------- /third_party/num-traits/src/pow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-traits/src/pow.rs -------------------------------------------------------------------------------- /third_party/num-traits/src/real.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-traits/src/real.rs -------------------------------------------------------------------------------- /third_party/num-traits/src/sign.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/num-traits/src/sign.rs -------------------------------------------------------------------------------- /third_party/pin-utils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/pin-utils/Cargo.toml -------------------------------------------------------------------------------- /third_party/pin-utils/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/pin-utils/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/pin-utils/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/pin-utils/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/pin-utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/pin-utils/README.md -------------------------------------------------------------------------------- /third_party/pin-utils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/pin-utils/src/lib.rs -------------------------------------------------------------------------------- /third_party/pin-utils/src/stack_pin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/pin-utils/src/stack_pin.rs -------------------------------------------------------------------------------- /third_party/proc-macro2-1.0.6/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/proc-macro2-1.0.6/build.rs -------------------------------------------------------------------------------- /third_party/quote-1.0.2/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/quote-1.0.2/Cargo.toml -------------------------------------------------------------------------------- /third_party/quote-1.0.2/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/quote-1.0.2/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/quote-1.0.2/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/quote-1.0.2/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/quote-1.0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/quote-1.0.2/README.md -------------------------------------------------------------------------------- /third_party/quote-1.0.2/src/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/quote-1.0.2/src/ext.rs -------------------------------------------------------------------------------- /third_party/quote-1.0.2/src/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/quote-1.0.2/src/format.rs -------------------------------------------------------------------------------- /third_party/quote-1.0.2/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/quote-1.0.2/src/lib.rs -------------------------------------------------------------------------------- /third_party/quote-1.0.2/src/runtime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/quote-1.0.2/src/runtime.rs -------------------------------------------------------------------------------- /third_party/quote-1.0.2/src/spanned.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/quote-1.0.2/src/spanned.rs -------------------------------------------------------------------------------- /third_party/quote-1.0.2/tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/quote-1.0.2/tests/test.rs -------------------------------------------------------------------------------- /third_party/quote/.cargo-checksum.json: -------------------------------------------------------------------------------- 1 | {"files":{}} 2 | -------------------------------------------------------------------------------- /third_party/quote/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/quote/Cargo.toml -------------------------------------------------------------------------------- /third_party/quote/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/quote/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/quote/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/quote/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/quote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/quote/README.md -------------------------------------------------------------------------------- /third_party/quote/src/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/quote/src/ext.rs -------------------------------------------------------------------------------- /third_party/quote/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/quote/src/lib.rs -------------------------------------------------------------------------------- /third_party/quote/src/to_tokens.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/quote/src/to_tokens.rs -------------------------------------------------------------------------------- /third_party/quote/tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/quote/tests/test.rs -------------------------------------------------------------------------------- /third_party/rustc-demangle/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/rustc-demangle/Cargo.toml -------------------------------------------------------------------------------- /third_party/rustc-demangle/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/rustc-demangle/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/rustc-demangle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/rustc-demangle/README.md -------------------------------------------------------------------------------- /third_party/rustc-demangle/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/rustc-demangle/src/lib.rs -------------------------------------------------------------------------------- /third_party/rustc-demangle/src/v0.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/rustc-demangle/src/v0.rs -------------------------------------------------------------------------------- /third_party/serde/.cargo-checksum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde/.cargo-checksum.json -------------------------------------------------------------------------------- /third_party/serde/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde/Cargo.toml -------------------------------------------------------------------------------- /third_party/serde/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/serde/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/serde/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde/README.md -------------------------------------------------------------------------------- /third_party/serde/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde/build.rs -------------------------------------------------------------------------------- /third_party/serde/crates-io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde/crates-io.md -------------------------------------------------------------------------------- /third_party/serde/src/de/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde/src/de/impls.rs -------------------------------------------------------------------------------- /third_party/serde/src/de/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde/src/de/mod.rs -------------------------------------------------------------------------------- /third_party/serde/src/de/utf8.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde/src/de/utf8.rs -------------------------------------------------------------------------------- /third_party/serde/src/de/value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde/src/de/value.rs -------------------------------------------------------------------------------- /third_party/serde/src/export.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde/src/export.rs -------------------------------------------------------------------------------- /third_party/serde/src/integer128.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde/src/integer128.rs -------------------------------------------------------------------------------- /third_party/serde/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde/src/lib.rs -------------------------------------------------------------------------------- /third_party/serde/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde/src/macros.rs -------------------------------------------------------------------------------- /third_party/serde/src/private/de.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde/src/private/de.rs -------------------------------------------------------------------------------- /third_party/serde/src/private/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde/src/private/mod.rs -------------------------------------------------------------------------------- /third_party/serde/src/private/ser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde/src/private/ser.rs -------------------------------------------------------------------------------- /third_party/serde/src/ser/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde/src/ser/impls.rs -------------------------------------------------------------------------------- /third_party/serde/src/ser/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde/src/ser/mod.rs -------------------------------------------------------------------------------- /third_party/serde_derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde_derive/Cargo.toml -------------------------------------------------------------------------------- /third_party/serde_derive/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde_derive/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/serde_derive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde_derive/README.md -------------------------------------------------------------------------------- /third_party/serde_derive/crates-io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde_derive/crates-io.md -------------------------------------------------------------------------------- /third_party/serde_derive/src/bound.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde_derive/src/bound.rs -------------------------------------------------------------------------------- /third_party/serde_derive/src/de.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde_derive/src/de.rs -------------------------------------------------------------------------------- /third_party/serde_derive/src/dummy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde_derive/src/dummy.rs -------------------------------------------------------------------------------- /third_party/serde_derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde_derive/src/lib.rs -------------------------------------------------------------------------------- /third_party/serde_derive/src/ser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde_derive/src/ser.rs -------------------------------------------------------------------------------- /third_party/serde_derive/src/try.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/serde_derive/src/try.rs -------------------------------------------------------------------------------- /third_party/spin/.cargo-checksum.json: -------------------------------------------------------------------------------- 1 | {"files":{}} 2 | -------------------------------------------------------------------------------- /third_party/spin/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/spin/Cargo.toml -------------------------------------------------------------------------------- /third_party/spin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/spin/LICENSE -------------------------------------------------------------------------------- /third_party/spin/MODIFICATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/spin/MODIFICATIONS.md -------------------------------------------------------------------------------- /third_party/spin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/spin/README.md -------------------------------------------------------------------------------- /third_party/spin/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/spin/src/lib.rs -------------------------------------------------------------------------------- /third_party/spin/src/mutex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/spin/src/mutex.rs -------------------------------------------------------------------------------- /third_party/spin/src/once.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/spin/src/once.rs -------------------------------------------------------------------------------- /third_party/spin/src/rw_lock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/spin/src/rw_lock.rs -------------------------------------------------------------------------------- /third_party/strsim/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/strsim/CHANGELOG.md -------------------------------------------------------------------------------- /third_party/strsim/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/strsim/Cargo.toml -------------------------------------------------------------------------------- /third_party/strsim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/strsim/LICENSE -------------------------------------------------------------------------------- /third_party/strsim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/strsim/README.md -------------------------------------------------------------------------------- /third_party/strsim/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/strsim/appveyor.yml -------------------------------------------------------------------------------- /third_party/strsim/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/strsim/dev -------------------------------------------------------------------------------- /third_party/strsim/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/strsim/src/lib.rs -------------------------------------------------------------------------------- /third_party/strsim/tests/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/strsim/tests/lib.rs -------------------------------------------------------------------------------- /third_party/structopt-derive/.cargo-checksum.json: -------------------------------------------------------------------------------- 1 | {"files":{}} 2 | -------------------------------------------------------------------------------- /third_party/structopt/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/structopt/CHANGELOG.md -------------------------------------------------------------------------------- /third_party/structopt/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/structopt/Cargo.toml -------------------------------------------------------------------------------- /third_party/structopt/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/structopt/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/structopt/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/structopt/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/structopt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/structopt/README.md -------------------------------------------------------------------------------- /third_party/structopt/examples/git.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/structopt/examples/git.rs -------------------------------------------------------------------------------- /third_party/structopt/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/structopt/src/lib.rs -------------------------------------------------------------------------------- /third_party/structopt/tests/flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/structopt/tests/flags.rs -------------------------------------------------------------------------------- /third_party/structopt/tests/flatten.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/structopt/tests/flatten.rs -------------------------------------------------------------------------------- /third_party/structopt/tests/options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/structopt/tests/options.rs -------------------------------------------------------------------------------- /third_party/structopt/tests/privacy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/structopt/tests/privacy.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/Cargo.toml -------------------------------------------------------------------------------- /third_party/syn-1.0.11/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/syn-1.0.11/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/syn-1.0.11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/README.md -------------------------------------------------------------------------------- /third_party/syn-1.0.11/benches/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/benches/file.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/benches/rust.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/benches/rust.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/build.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/attr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/attr.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/await.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/await.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/bigint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/bigint.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/buffer.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/data.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/derive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/derive.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/error.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/export.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/export.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/expr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/expr.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/ext.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/file.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/gen/fold.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/gen/fold.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/generics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/generics.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/group.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/group.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/ident.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/ident.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/item.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/keyword.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/lib.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/lifetime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/lifetime.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/lit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/lit.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/mac.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/mac.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/macros.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/op.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/op.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/parse.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/pat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/pat.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/path.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/print.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/print.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/sealed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/sealed.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/span.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/span.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/spanned.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/spanned.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/stmt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/stmt.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/thread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/thread.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/token.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/tt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/tt.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/src/ty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn-1.0.11/src/ty.rs -------------------------------------------------------------------------------- /third_party/syn-1.0.11/tests/features/error.rs: -------------------------------------------------------------------------------- 1 | "Hello! You want: cargo test --release --all-features" 2 | -------------------------------------------------------------------------------- /third_party/syn/.cargo-checksum.json: -------------------------------------------------------------------------------- 1 | {"files":{}} 2 | -------------------------------------------------------------------------------- /third_party/syn/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/Cargo.toml -------------------------------------------------------------------------------- /third_party/syn/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/syn/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/syn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/README.md -------------------------------------------------------------------------------- /third_party/syn/src/attr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/attr.rs -------------------------------------------------------------------------------- /third_party/syn/src/buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/buffer.rs -------------------------------------------------------------------------------- /third_party/syn/src/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/data.rs -------------------------------------------------------------------------------- /third_party/syn/src/derive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/derive.rs -------------------------------------------------------------------------------- /third_party/syn/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/error.rs -------------------------------------------------------------------------------- /third_party/syn/src/expr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/expr.rs -------------------------------------------------------------------------------- /third_party/syn/src/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/file.rs -------------------------------------------------------------------------------- /third_party/syn/src/gen/fold.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/gen/fold.rs -------------------------------------------------------------------------------- /third_party/syn/src/gen/visit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/gen/visit.rs -------------------------------------------------------------------------------- /third_party/syn/src/gen/visit_mut.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/gen/visit_mut.rs -------------------------------------------------------------------------------- /third_party/syn/src/gen_helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/gen_helper.rs -------------------------------------------------------------------------------- /third_party/syn/src/generics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/generics.rs -------------------------------------------------------------------------------- /third_party/syn/src/item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/item.rs -------------------------------------------------------------------------------- /third_party/syn/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/lib.rs -------------------------------------------------------------------------------- /third_party/syn/src/lifetime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/lifetime.rs -------------------------------------------------------------------------------- /third_party/syn/src/lit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/lit.rs -------------------------------------------------------------------------------- /third_party/syn/src/mac.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/mac.rs -------------------------------------------------------------------------------- /third_party/syn/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/macros.rs -------------------------------------------------------------------------------- /third_party/syn/src/op.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/op.rs -------------------------------------------------------------------------------- /third_party/syn/src/parse_quote.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/parse_quote.rs -------------------------------------------------------------------------------- /third_party/syn/src/parsers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/parsers.rs -------------------------------------------------------------------------------- /third_party/syn/src/path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/path.rs -------------------------------------------------------------------------------- /third_party/syn/src/punctuated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/punctuated.rs -------------------------------------------------------------------------------- /third_party/syn/src/spanned.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/spanned.rs -------------------------------------------------------------------------------- /third_party/syn/src/synom.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/synom.rs -------------------------------------------------------------------------------- /third_party/syn/src/token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/token.rs -------------------------------------------------------------------------------- /third_party/syn/src/tt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/tt.rs -------------------------------------------------------------------------------- /third_party/syn/src/ty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/syn/src/ty.rs -------------------------------------------------------------------------------- /third_party/tar/.cargo-checksum.json: -------------------------------------------------------------------------------- 1 | {"files":{}} 2 | -------------------------------------------------------------------------------- /third_party/tar/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/tar/Cargo.toml -------------------------------------------------------------------------------- /third_party/tar/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/tar/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/tar/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/tar/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/tar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/tar/README.md -------------------------------------------------------------------------------- /third_party/tar/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/tar/appveyor.yml -------------------------------------------------------------------------------- /third_party/tar/examples/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/tar/examples/list.rs -------------------------------------------------------------------------------- /third_party/tar/examples/raw_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/tar/examples/raw_list.rs -------------------------------------------------------------------------------- /third_party/tar/examples/write.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/tar/examples/write.rs -------------------------------------------------------------------------------- /third_party/tar/src/archive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/tar/src/archive.rs -------------------------------------------------------------------------------- /third_party/tar/src/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/tar/src/builder.rs -------------------------------------------------------------------------------- /third_party/tar/src/entry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/tar/src/entry.rs -------------------------------------------------------------------------------- /third_party/tar/src/entry_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/tar/src/entry_type.rs -------------------------------------------------------------------------------- /third_party/tar/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/tar/src/error.rs -------------------------------------------------------------------------------- /third_party/tar/src/header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/tar/src/header.rs -------------------------------------------------------------------------------- /third_party/tar/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/tar/src/lib.rs -------------------------------------------------------------------------------- /third_party/tar/src/pax.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/tar/src/pax.rs -------------------------------------------------------------------------------- /third_party/tar/tests/all.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/tar/tests/all.rs -------------------------------------------------------------------------------- /third_party/tar/tests/archives/pax.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/tar/tests/archives/pax.tar -------------------------------------------------------------------------------- /third_party/tar/tests/entry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/tar/tests/entry.rs -------------------------------------------------------------------------------- /third_party/tar/tests/header/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/tar/tests/header/mod.rs -------------------------------------------------------------------------------- /third_party/termion/.cargo-checksum.json: -------------------------------------------------------------------------------- 1 | {"files":{}} 2 | -------------------------------------------------------------------------------- /third_party/termion/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/Cargo.toml -------------------------------------------------------------------------------- /third_party/termion/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/LICENSE -------------------------------------------------------------------------------- /third_party/termion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/README.md -------------------------------------------------------------------------------- /third_party/termion/examples/async.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/examples/async.rs -------------------------------------------------------------------------------- /third_party/termion/examples/click.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/examples/click.rs -------------------------------------------------------------------------------- /third_party/termion/examples/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/examples/color.rs -------------------------------------------------------------------------------- /third_party/termion/examples/commie.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/examples/commie.rs -------------------------------------------------------------------------------- /third_party/termion/examples/is_tty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/examples/is_tty.rs -------------------------------------------------------------------------------- /third_party/termion/examples/keys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/examples/keys.rs -------------------------------------------------------------------------------- /third_party/termion/examples/mouse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/examples/mouse.rs -------------------------------------------------------------------------------- /third_party/termion/examples/read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/examples/read.rs -------------------------------------------------------------------------------- /third_party/termion/examples/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/examples/simple.rs -------------------------------------------------------------------------------- /third_party/termion/examples/size.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/examples/size.rs -------------------------------------------------------------------------------- /third_party/termion/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/logo.svg -------------------------------------------------------------------------------- /third_party/termion/src/async.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/src/async.rs -------------------------------------------------------------------------------- /third_party/termion/src/clear.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/src/clear.rs -------------------------------------------------------------------------------- /third_party/termion/src/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/src/color.rs -------------------------------------------------------------------------------- /third_party/termion/src/cursor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/src/cursor.rs -------------------------------------------------------------------------------- /third_party/termion/src/event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/src/event.rs -------------------------------------------------------------------------------- /third_party/termion/src/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/src/input.rs -------------------------------------------------------------------------------- /third_party/termion/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/src/lib.rs -------------------------------------------------------------------------------- /third_party/termion/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/src/macros.rs -------------------------------------------------------------------------------- /third_party/termion/src/raw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/src/raw.rs -------------------------------------------------------------------------------- /third_party/termion/src/screen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/src/screen.rs -------------------------------------------------------------------------------- /third_party/termion/src/scroll.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/src/scroll.rs -------------------------------------------------------------------------------- /third_party/termion/src/style.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/termion/src/style.rs -------------------------------------------------------------------------------- /third_party/textwrap/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/textwrap/Cargo.toml -------------------------------------------------------------------------------- /third_party/textwrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/textwrap/LICENSE -------------------------------------------------------------------------------- /third_party/textwrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/textwrap/README.md -------------------------------------------------------------------------------- /third_party/textwrap/benches/linear.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/textwrap/benches/linear.rs -------------------------------------------------------------------------------- /third_party/textwrap/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/textwrap/src/lib.rs -------------------------------------------------------------------------------- /third_party/time/.cargo-checksum.json: -------------------------------------------------------------------------------- 1 | {"files":{}} 2 | -------------------------------------------------------------------------------- /third_party/time/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/time/Cargo.toml -------------------------------------------------------------------------------- /third_party/time/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/time/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/time/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/time/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/time/README.md -------------------------------------------------------------------------------- /third_party/time/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/time/appveyor.yml -------------------------------------------------------------------------------- /third_party/time/src/display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/time/src/display.rs -------------------------------------------------------------------------------- /third_party/time/src/duration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/time/src/duration.rs -------------------------------------------------------------------------------- /third_party/time/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/time/src/lib.rs -------------------------------------------------------------------------------- /third_party/time/src/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/time/src/parse.rs -------------------------------------------------------------------------------- /third_party/time/src/sys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/time/src/sys.rs -------------------------------------------------------------------------------- /third_party/unicode-width/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/unicode-width/COPYRIGHT -------------------------------------------------------------------------------- /third_party/unicode-width/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/unicode-width/Cargo.toml -------------------------------------------------------------------------------- /third_party/unicode-width/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/unicode-width/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/unicode-width/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/unicode-width/README.md -------------------------------------------------------------------------------- /third_party/unicode-width/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/unicode-width/src/lib.rs -------------------------------------------------------------------------------- /third_party/unicode-width/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/unicode-width/src/tests.rs -------------------------------------------------------------------------------- /third_party/ux-0.1.3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/ux-0.1.3/CHANGELOG.md -------------------------------------------------------------------------------- /third_party/ux-0.1.3/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/ux-0.1.3/Cargo.toml -------------------------------------------------------------------------------- /third_party/ux-0.1.3/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/ux-0.1.3/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/ux-0.1.3/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/ux-0.1.3/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/ux-0.1.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/ux-0.1.3/README.md -------------------------------------------------------------------------------- /third_party/ux-0.1.3/src/conversion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/ux-0.1.3/src/conversion.rs -------------------------------------------------------------------------------- /third_party/ux-0.1.3/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/ux-0.1.3/src/lib.rs -------------------------------------------------------------------------------- /third_party/vec_map/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/vec_map/Cargo.toml -------------------------------------------------------------------------------- /third_party/vec_map/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/vec_map/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/vec_map/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/vec_map/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/vec_map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/vec_map/README.md -------------------------------------------------------------------------------- /third_party/vec_map/deploy-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/vec_map/deploy-docs.sh -------------------------------------------------------------------------------- /third_party/vec_map/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/vec_map/src/lib.rs -------------------------------------------------------------------------------- /third_party/xattr/.cargo-checksum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/xattr/.cargo-checksum.json -------------------------------------------------------------------------------- /third_party/xattr/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/xattr/Cargo.toml -------------------------------------------------------------------------------- /third_party/xattr/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/xattr/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/xattr/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/xattr/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/xattr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/xattr/README.md -------------------------------------------------------------------------------- /third_party/xattr/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/xattr/rustfmt.toml -------------------------------------------------------------------------------- /third_party/xattr/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/xattr/src/error.rs -------------------------------------------------------------------------------- /third_party/xattr/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/xattr/src/lib.rs -------------------------------------------------------------------------------- /third_party/xattr/src/sys/bsd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/xattr/src/sys/bsd.rs -------------------------------------------------------------------------------- /third_party/xattr/src/sys/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/xattr/src/sys/mod.rs -------------------------------------------------------------------------------- /third_party/xattr/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/xattr/src/util.rs -------------------------------------------------------------------------------- /third_party/xattr/tests/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/xattr/tests/main.rs -------------------------------------------------------------------------------- /third_party/zerocopy-0.3.0/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/zerocopy-0.3.0/Cargo.toml -------------------------------------------------------------------------------- /third_party/zerocopy-0.3.0/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/third_party/zerocopy-0.3.0/src/lib.rs -------------------------------------------------------------------------------- /third_party/zerocopy-derive-0.2.0/.cargo-checksum.json: -------------------------------------------------------------------------------- 1 | {"files":{}} 2 | -------------------------------------------------------------------------------- /tools/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/tools/.cargo/config -------------------------------------------------------------------------------- /tools/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/tools/Build.mk -------------------------------------------------------------------------------- /tools/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/tools/Cargo.toml -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/print_memory_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/tools/print_memory_usage.py -------------------------------------------------------------------------------- /tools/rust-toolchain: -------------------------------------------------------------------------------- 1 | ../third_party/elf2tab/rust-toolchain -------------------------------------------------------------------------------- /tools/size_diff/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/tools/size_diff/Cargo.toml -------------------------------------------------------------------------------- /tools/size_diff/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/tools/size_diff/src/main.rs -------------------------------------------------------------------------------- /tools/size_graph/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/tools/size_graph/Cargo.toml -------------------------------------------------------------------------------- /tools/size_graph/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/tools/size_graph/src/lib.rs -------------------------------------------------------------------------------- /tools/size_graph/src/objdump.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/tools/size_graph/src/objdump.rs -------------------------------------------------------------------------------- /userspace/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/.cargo/config -------------------------------------------------------------------------------- /userspace/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/.gitignore -------------------------------------------------------------------------------- /userspace/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/Build.mk -------------------------------------------------------------------------------- /userspace/CAppMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/CAppMakefile.mk -------------------------------------------------------------------------------- /userspace/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/Cargo.toml -------------------------------------------------------------------------------- /userspace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/Makefile -------------------------------------------------------------------------------- /userspace/aes_test/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/aes_test/Build.mk -------------------------------------------------------------------------------- /userspace/aes_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/aes_test/Makefile -------------------------------------------------------------------------------- /userspace/aes_test/TockMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/aes_test/TockMakefile -------------------------------------------------------------------------------- /userspace/aes_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/aes_test/main.c -------------------------------------------------------------------------------- /userspace/blink/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/blink/Build.mk -------------------------------------------------------------------------------- /userspace/blink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/blink/Makefile -------------------------------------------------------------------------------- /userspace/blink/TockMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/blink/TockMakefile -------------------------------------------------------------------------------- /userspace/blink/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/blink/main.c -------------------------------------------------------------------------------- /userspace/dcrypto_test/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/dcrypto_test/Build.mk -------------------------------------------------------------------------------- /userspace/dcrypto_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/dcrypto_test/Makefile -------------------------------------------------------------------------------- /userspace/dcrypto_test/TockMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/dcrypto_test/TockMakefile -------------------------------------------------------------------------------- /userspace/dcrypto_test/dcrypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/dcrypto_test/dcrypto.c -------------------------------------------------------------------------------- /userspace/dcrypto_test/dcrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/dcrypto_test/dcrypto.h -------------------------------------------------------------------------------- /userspace/dcrypto_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/dcrypto_test/main.c -------------------------------------------------------------------------------- /userspace/flash_test/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/flash_test/Build.mk -------------------------------------------------------------------------------- /userspace/flash_test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/flash_test/Cargo.toml -------------------------------------------------------------------------------- /userspace/flash_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/flash_test/Makefile -------------------------------------------------------------------------------- /userspace/flash_test/src/driver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/flash_test/src/driver.rs -------------------------------------------------------------------------------- /userspace/flash_test/src/fake.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/flash_test/src/fake.rs -------------------------------------------------------------------------------- /userspace/flash_test/src/h1_hw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/flash_test/src/h1_hw.rs -------------------------------------------------------------------------------- /userspace/flash_test/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/flash_test/src/lib.rs -------------------------------------------------------------------------------- /userspace/flash_test/src/mock_alarm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/flash_test/src/mock_alarm.rs -------------------------------------------------------------------------------- /userspace/gpio_test/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/gpio_test/Build.mk -------------------------------------------------------------------------------- /userspace/gpio_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/gpio_test/Makefile -------------------------------------------------------------------------------- /userspace/gpio_test/TockMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/gpio_test/TockMakefile -------------------------------------------------------------------------------- /userspace/gpio_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/gpio_test/main.c -------------------------------------------------------------------------------- /userspace/layout.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/layout.ld -------------------------------------------------------------------------------- /userspace/layout_a.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/layout_a.ld -------------------------------------------------------------------------------- /userspace/layout_b.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/layout_b.ld -------------------------------------------------------------------------------- /userspace/libh1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/libh1/Makefile -------------------------------------------------------------------------------- /userspace/libh1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/libh1/README.md -------------------------------------------------------------------------------- /userspace/libh1/dcrypto_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/libh1/dcrypto_syscalls.c -------------------------------------------------------------------------------- /userspace/libh1/dcrypto_syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/libh1/dcrypto_syscalls.h -------------------------------------------------------------------------------- /userspace/libh1/digest_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/libh1/digest_syscalls.c -------------------------------------------------------------------------------- /userspace/libh1/digest_syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/libh1/digest_syscalls.h -------------------------------------------------------------------------------- /userspace/libh1/drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/libh1/drbg.h -------------------------------------------------------------------------------- /userspace/libh1/fips_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/libh1/fips_err.h -------------------------------------------------------------------------------- /userspace/libh1/h1_aes_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/libh1/h1_aes_syscalls.c -------------------------------------------------------------------------------- /userspace/libh1/h1_aes_syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/libh1/h1_aes_syscalls.h -------------------------------------------------------------------------------- /userspace/libh1/nvcounter_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/libh1/nvcounter_syscalls.c -------------------------------------------------------------------------------- /userspace/libh1/nvcounter_syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/libh1/nvcounter_syscalls.h -------------------------------------------------------------------------------- /userspace/libh1/p256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/libh1/p256.h -------------------------------------------------------------------------------- /userspace/libh1/personality_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/libh1/personality_syscalls.c -------------------------------------------------------------------------------- /userspace/libh1/personality_syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/libh1/personality_syscalls.h -------------------------------------------------------------------------------- /userspace/libh1/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/libh1/storage.h -------------------------------------------------------------------------------- /userspace/low_level_debug/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/low_level_debug/Build.mk -------------------------------------------------------------------------------- /userspace/low_level_debug/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/low_level_debug/Cargo.toml -------------------------------------------------------------------------------- /userspace/low_level_debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/low_level_debug/Makefile -------------------------------------------------------------------------------- /userspace/low_level_debug/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/low_level_debug/src/main.rs -------------------------------------------------------------------------------- /userspace/nvcounter_ctest/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/nvcounter_ctest/Build.mk -------------------------------------------------------------------------------- /userspace/nvcounter_ctest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/nvcounter_ctest/Makefile -------------------------------------------------------------------------------- /userspace/nvcounter_ctest/TockMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/nvcounter_ctest/TockMakefile -------------------------------------------------------------------------------- /userspace/nvcounter_ctest/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/nvcounter_ctest/main.c -------------------------------------------------------------------------------- /userspace/nvcounter_test/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/nvcounter_test/Build.mk -------------------------------------------------------------------------------- /userspace/nvcounter_test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/nvcounter_test/Cargo.toml -------------------------------------------------------------------------------- /userspace/nvcounter_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/nvcounter_test/Makefile -------------------------------------------------------------------------------- /userspace/nvcounter_test/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/nvcounter_test/src/lib.rs -------------------------------------------------------------------------------- /userspace/otpilot/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/otpilot/Build.mk -------------------------------------------------------------------------------- /userspace/otpilot/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/otpilot/Cargo.toml -------------------------------------------------------------------------------- /userspace/otpilot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/otpilot/Makefile -------------------------------------------------------------------------------- /userspace/otpilot/src/alarm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/otpilot/src/alarm.rs -------------------------------------------------------------------------------- /userspace/otpilot/src/flash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/otpilot/src/flash.rs -------------------------------------------------------------------------------- /userspace/otpilot/src/fuse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/otpilot/src/fuse.rs -------------------------------------------------------------------------------- /userspace/otpilot/src/globalsec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/otpilot/src/globalsec.rs -------------------------------------------------------------------------------- /userspace/otpilot/src/gpio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/otpilot/src/gpio.rs -------------------------------------------------------------------------------- /userspace/otpilot/src/gpio_control.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/otpilot/src/gpio_control.rs -------------------------------------------------------------------------------- /userspace/otpilot/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/otpilot/src/main.rs -------------------------------------------------------------------------------- /userspace/otpilot/src/reset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/otpilot/src/reset.rs -------------------------------------------------------------------------------- /userspace/otpilot/src/sfdp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/otpilot/src/sfdp.rs -------------------------------------------------------------------------------- /userspace/otpilot/src/spi_device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/otpilot/src/spi_device.rs -------------------------------------------------------------------------------- /userspace/otpilot/src/spi_host.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/otpilot/src/spi_host.rs -------------------------------------------------------------------------------- /userspace/otpilot/src/spi_host_h1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/otpilot/src/spi_host_h1.rs -------------------------------------------------------------------------------- /userspace/otpilot/src/spi_processor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/otpilot/src/spi_processor.rs -------------------------------------------------------------------------------- /userspace/personality_clear/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/personality_clear/Build.mk -------------------------------------------------------------------------------- /userspace/personality_clear/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/personality_clear/Makefile -------------------------------------------------------------------------------- /userspace/personality_clear/asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/personality_clear/asn1.c -------------------------------------------------------------------------------- /userspace/personality_clear/cmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/personality_clear/cmac.c -------------------------------------------------------------------------------- /userspace/personality_clear/drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/personality_clear/drbg.c -------------------------------------------------------------------------------- /userspace/personality_clear/fips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/personality_clear/fips.c -------------------------------------------------------------------------------- /userspace/personality_clear/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/personality_clear/main.c -------------------------------------------------------------------------------- /userspace/personality_clear/p256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/personality_clear/p256.c -------------------------------------------------------------------------------- /userspace/personality_clear/trng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/personality_clear/trng.c -------------------------------------------------------------------------------- /userspace/personality_clear/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/personality_clear/x509.c -------------------------------------------------------------------------------- /userspace/personality_test/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/personality_test/Build.mk -------------------------------------------------------------------------------- /userspace/personality_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/personality_test/Makefile -------------------------------------------------------------------------------- /userspace/personality_test/asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/personality_test/asn1.c -------------------------------------------------------------------------------- /userspace/personality_test/cmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/personality_test/cmac.c -------------------------------------------------------------------------------- /userspace/personality_test/drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/personality_test/drbg.c -------------------------------------------------------------------------------- /userspace/personality_test/fips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/personality_test/fips.c -------------------------------------------------------------------------------- /userspace/personality_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/personality_test/main.c -------------------------------------------------------------------------------- /userspace/personality_test/p256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/personality_test/p256.c -------------------------------------------------------------------------------- /userspace/personality_test/trng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/personality_test/trng.c -------------------------------------------------------------------------------- /userspace/personality_test/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/personality_test/x509.c -------------------------------------------------------------------------------- /userspace/rng/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/rng/Build.mk -------------------------------------------------------------------------------- /userspace/rng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/rng/Makefile -------------------------------------------------------------------------------- /userspace/rng/TockMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/rng/TockMakefile -------------------------------------------------------------------------------- /userspace/rng/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/rng/main.c -------------------------------------------------------------------------------- /userspace/rust-toolchain: -------------------------------------------------------------------------------- 1 | ../third_party/libtock-rs/rust-toolchain -------------------------------------------------------------------------------- /userspace/sha_test/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/sha_test/Build.mk -------------------------------------------------------------------------------- /userspace/sha_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/sha_test/Makefile -------------------------------------------------------------------------------- /userspace/sha_test/TockMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/sha_test/TockMakefile -------------------------------------------------------------------------------- /userspace/sha_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/sha_test/main.c -------------------------------------------------------------------------------- /userspace/spin/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/spin/Build.mk -------------------------------------------------------------------------------- /userspace/spin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/spin/Makefile -------------------------------------------------------------------------------- /userspace/spin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/spin/README -------------------------------------------------------------------------------- /userspace/spin/TockMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/spin/TockMakefile -------------------------------------------------------------------------------- /userspace/spin/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/spin/main.c -------------------------------------------------------------------------------- /userspace/test_harness/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/test_harness/Cargo.toml -------------------------------------------------------------------------------- /userspace/test_harness/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/test_harness/src/lib.rs -------------------------------------------------------------------------------- /userspace/u2f_app/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/Build.mk -------------------------------------------------------------------------------- /userspace/u2f_app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/Makefile -------------------------------------------------------------------------------- /userspace/u2f_app/TockMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/TockMakefile -------------------------------------------------------------------------------- /userspace/u2f_app/asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/asn1.c -------------------------------------------------------------------------------- /userspace/u2f_app/cmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/cmac.c -------------------------------------------------------------------------------- /userspace/u2f_app/drbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/drbg.c -------------------------------------------------------------------------------- /userspace/u2f_app/fips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/fips.c -------------------------------------------------------------------------------- /userspace/u2f_app/fips_crypto_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/fips_crypto_tests.c -------------------------------------------------------------------------------- /userspace/u2f_app/fips_entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/fips_entropy.c -------------------------------------------------------------------------------- /userspace/u2f_app/fips_health_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/fips_health_tests.c -------------------------------------------------------------------------------- /userspace/u2f_app/include/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/include/asn1.h -------------------------------------------------------------------------------- /userspace/u2f_app/include/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/include/cmac.h -------------------------------------------------------------------------------- /userspace/u2f_app/include/fips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/include/fips.h -------------------------------------------------------------------------------- /userspace/u2f_app/include/fips_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/include/fips_aes.h -------------------------------------------------------------------------------- /userspace/u2f_app/include/hid_dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/include/hid_dfu.h -------------------------------------------------------------------------------- /userspace/u2f_app/include/kl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/include/kl.h -------------------------------------------------------------------------------- /userspace/u2f_app/include/p256_ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/include/p256_ecdsa.h -------------------------------------------------------------------------------- /userspace/u2f_app/include/trng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/include/trng.h -------------------------------------------------------------------------------- /userspace/u2f_app/include/u2f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/include/u2f.h -------------------------------------------------------------------------------- /userspace/u2f_app/include/u2f_corp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/include/u2f_corp.h -------------------------------------------------------------------------------- /userspace/u2f_app/include/u2f_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/include/u2f_hid.h -------------------------------------------------------------------------------- /userspace/u2f_app/include/u2f_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/include/u2f_impl.h -------------------------------------------------------------------------------- /userspace/u2f_app/include/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/include/x509.h -------------------------------------------------------------------------------- /userspace/u2f_app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/main.c -------------------------------------------------------------------------------- /userspace/u2f_app/p256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/p256.c -------------------------------------------------------------------------------- /userspace/u2f_app/p256_ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/p256_ecdsa.c -------------------------------------------------------------------------------- /userspace/u2f_app/tock_shims.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/tock_shims.c -------------------------------------------------------------------------------- /userspace/u2f_app/trng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/trng.c -------------------------------------------------------------------------------- /userspace/u2f_app/u2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/u2f.c -------------------------------------------------------------------------------- /userspace/u2f_app/u2f_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/u2f_syscalls.c -------------------------------------------------------------------------------- /userspace/u2f_app/u2f_syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/u2f_syscalls.h -------------------------------------------------------------------------------- /userspace/u2f_app/u2f_transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/u2f_transport.c -------------------------------------------------------------------------------- /userspace/u2f_app/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_app/x509.c -------------------------------------------------------------------------------- /userspace/u2f_test/Build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_test/Build.mk -------------------------------------------------------------------------------- /userspace/u2f_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_test/Makefile -------------------------------------------------------------------------------- /userspace/u2f_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_test/README.md -------------------------------------------------------------------------------- /userspace/u2f_test/TockMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_test/TockMakefile -------------------------------------------------------------------------------- /userspace/u2f_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_test/main.c -------------------------------------------------------------------------------- /userspace/u2f_test/u2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_test/u2f.c -------------------------------------------------------------------------------- /userspace/u2f_test/u2f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/tock-on-titan/HEAD/userspace/u2f_test/u2f.h --------------------------------------------------------------------------------