# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "ember_os" version = "0.1.1" authors = ["Eden Wang "] description = "A simple OS kernel implemented in rust, which has referenced https://os.phil-opp.com/" homepage = "https://github.com/DrEden33773/ember_os" readme = "README.md" keywords = [ "unix-like", "os", "kernel", "rust", "embedded", ] categories = [ "embedded", "os", "no-std", "memory-management", ] license = "MIT/Apache-2.0" repository = "https://github.com/DrEden33773/ember_os" [package.metadata.bootimage] test-args = [ "-device", "isa-debug-exit,iobase=0xf4,iosize=0x04", "-serial", "stdio", "-display", "none", ] test-success-exit-code = 33 test-timeout = 300 [[test]] name = "stack_overflow" harness = false [[test]] name = "should_panic" harness = false [dependencies.async-recursion] version = "1.0.4" [dependencies.bootloader] version = "0.9.28" features = ["map_physical_memory"] [dependencies.cfg-if] version = "1.0.0" [dependencies.conquer-once] version = "0.4.0" default-features = false [dependencies.crossbeam-queue] version = "0.2.1" features = ["alloc"] default-features = false [dependencies.futures-util] version = "0.3.4" features = ["alloc"] default-features = false [dependencies.hashbrown] version = "0.14.3" [dependencies.lazy_static] version = "1.0" features = ["spin_no_std"] [dependencies.linked_list_allocator] version = "0.10.5" [dependencies.lru] version = "0.12.3" [dependencies.pc-keyboard] version = "0.7.0" [dependencies.pic8259] version = "0.10.4" [dependencies.spin] version = "0.9.8" [dependencies.uart_16550] version = "0.3.0" [dependencies.volatile] version = "0.2.6" [dependencies.x86_64] version = "0.14.12" [features] default = [ "use_FixedSizeBlockAllocator", "use_EfficientExecutor", "use_SelfDefinedLRUCache", ] use_BumpAllocator = [] use_EfficientExecutor = [] use_FixedSizeBlockAllocator = [] use_LinkedListAllocator = [] use_LockedHeapAllocator = [] use_SelfDefinedLRUCache = [] use_SimpleExecutor = []