# 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 believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] edition = "2018" name = "bottleos" version = "0.2.0" authors = ["mayant15"] exclude = [".github/*"] description = "A bare-bones kernel created to teach myself OS internals" homepage = "https://github.com/mayant15/bottleos" documentation = "https://github.com/mayant15/bottleos" readme = "README.md" license = "MIT" repository = "https://github.com/mayant15/bottleos" [package.metadata.bootimage] test-args = ["-device", "isa-debug-exit,iobase=0xf4,iosize=0x04", "-serial", "stdio", "-display", "none"] test-success-exit-code = 33 test-timeout = 120 [lib] path = "kernel/lib.rs" [[bin]] name = "bottleos" path = "kernel/main.rs" [[test]] name = "should_panic" harness = false [[test]] name = "stack_overflow" harness = false [dependencies.bootloader] version = "0.9.11" features = ["map_physical_memory"] [dependencies.lazy_static] version = "1.0" features = ["spin_no_std"] [dependencies.linked_list_allocator] version = "0.8.0" [dependencies.pc-keyboard] version = "0.5.0" [dependencies.pic8259_simple] version = "0.2.0" [dependencies.spin] version = "0.5.2" [dependencies.uart_16550] version = "0.2.0" [dependencies.volatile] version = "0.2.6" [dependencies.x86_64] version = "0.13.2"